starburst 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +12 -0
  4. data/app/assets/javascripts/starburst/application.js +13 -0
  5. data/app/assets/javascripts/starburst/starburst.js +19 -0
  6. data/app/assets/stylesheets/starburst/application.css +15 -0
  7. data/app/controllers/starburst/announcements_controller.rb +16 -0
  8. data/app/controllers/starburst/application_controller.rb +4 -0
  9. data/app/helpers/starburst/announcements_helper.rb +11 -0
  10. data/app/models/starburst/announcement.rb +53 -0
  11. data/app/models/starburst/announcement_view.rb +7 -0
  12. data/app/views/announcements/starburst/_announcement.html.erb +6 -0
  13. data/app/views/announcements/starburst/_announcement_bootstrap.html.erb +8 -0
  14. data/app/views/announcements/starburst/_announcement_foundation.html.erb +6 -0
  15. data/app/views/layouts/starburst/application.html.erb +14 -0
  16. data/config/routes.rb +3 -0
  17. data/db/migrate/20141004214002_create_announcement_tables.rb +17 -0
  18. data/lib/helpers/starburst/configuration.rb +21 -0
  19. data/lib/starburst.rb +9 -0
  20. data/lib/starburst/engine.rb +13 -0
  21. data/lib/starburst/version.rb +3 -0
  22. data/lib/tasks/starburst_tasks.rake +4 -0
  23. data/spec/controllers/starburst/announcements_controller_spec.rb +34 -0
  24. data/spec/dummy/README.rdoc +28 -0
  25. data/spec/dummy/Rakefile +6 -0
  26. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  27. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  28. data/spec/dummy/app/controllers/application_controller.rb +6 -0
  29. data/spec/dummy/app/controllers/pages_controller.rb +5 -0
  30. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  31. data/spec/dummy/app/models/user.rb +5 -0
  32. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/spec/dummy/app/views/pages/home.html.erb +1 -0
  34. data/spec/dummy/bin/bundle +3 -0
  35. data/spec/dummy/bin/rails +4 -0
  36. data/spec/dummy/bin/rake +4 -0
  37. data/spec/dummy/config.ru +4 -0
  38. data/spec/dummy/config/application.rb +23 -0
  39. data/spec/dummy/config/boot.rb +5 -0
  40. data/spec/dummy/config/database.yml +25 -0
  41. data/spec/dummy/config/environment.rb +5 -0
  42. data/spec/dummy/config/environments/development.rb +37 -0
  43. data/spec/dummy/config/environments/production.rb +82 -0
  44. data/spec/dummy/config/environments/test.rb +39 -0
  45. data/spec/dummy/config/initializers/assets.rb +8 -0
  46. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  47. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  48. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  49. data/spec/dummy/config/initializers/inflections.rb +16 -0
  50. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  51. data/spec/dummy/config/initializers/session_store.rb +3 -0
  52. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/spec/dummy/config/locales/devise.en.yml +60 -0
  54. data/spec/dummy/config/locales/en.yml +23 -0
  55. data/spec/dummy/config/routes.rb +5 -0
  56. data/spec/dummy/config/secrets.yml +22 -0
  57. data/spec/dummy/db/development.sqlite3 +0 -0
  58. data/spec/dummy/db/migrate/20141004231338_create_users.rb +8 -0
  59. data/spec/dummy/db/schema.rb +39 -0
  60. data/spec/dummy/db/test.sqlite3 +0 -0
  61. data/spec/dummy/log/development.log +1427 -0
  62. data/spec/dummy/log/test.log +27180 -0
  63. data/spec/dummy/public/404.html +67 -0
  64. data/spec/dummy/public/422.html +67 -0
  65. data/spec/dummy/public/500.html +66 -0
  66. data/spec/dummy/public/favicon.ico +0 -0
  67. data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  68. data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  69. data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  70. data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  71. data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  72. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  73. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  74. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  75. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  76. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  77. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  78. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  79. data/spec/factories/announcements.rb +5 -0
  80. data/spec/factories/users.rb +5 -0
  81. data/spec/features/announcements_spec.rb +36 -0
  82. data/spec/models/starburst/announcement_spec.rb +155 -0
  83. data/spec/spec_helper.rb +22 -0
  84. data/spec/support/wait_for_ajax.rb +15 -0
  85. metadata +274 -0
@@ -0,0 +1,5 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Starburst::Engine => "/starburst"
4
+ root to: 'pages#home'
5
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 0d304ed5a04c85dd2ee79baea5e893fbcfbba9b438bb88faec868977b629f2cf915a0948b509f7d7a24c0c73f805e484939af553543ebe07fbd8387936fe9e28
15
+
16
+ test:
17
+ secret_key_base: 0ac07cc14cc7f7cc8073e6c164e0d2c7af410229912a72e05f6e8bb9b00dac9aa33543cf3927d339e66685e2bd776337e8dd69151b425ecec5f0d6ee30a16459
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,8 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :subscription
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,39 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20141004231338) do
15
+
16
+ create_table "starburst_announcement_views", force: true do |t|
17
+ t.integer "user_id"
18
+ t.integer "announcement_id"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ create_table "starburst_announcements", force: true do |t|
24
+ t.text "title"
25
+ t.text "body"
26
+ t.datetime "start_delivering_at"
27
+ t.datetime "stop_delivering_at"
28
+ t.text "limit_to_users"
29
+ t.datetime "created_at"
30
+ t.datetime "updated_at"
31
+ end
32
+
33
+ create_table "users", force: true do |t|
34
+ t.string "subscription"
35
+ t.datetime "created_at"
36
+ t.datetime "updated_at"
37
+ end
38
+
39
+ end
Binary file
@@ -0,0 +1,1427 @@
1
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateAnnouncementTables (20141004214002)
6
+  (0.1ms) begin transaction
7
+  (0.3ms) CREATE TABLE "announcements_reads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime)
8
+  (0.1ms) CREATE TABLE "announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime) 
9
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004214002"]]
10
+  (0.8ms) commit transaction
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
+ Migrating to CreateAnnouncementTables (20141004214002)
17
+  (0.1ms) begin transaction
18
+  (0.3ms) DROP TABLE "starburst_announcements"
19
+ SQLite3::SQLException: no such table: starburst_announcements: DROP TABLE "starburst_announcements"
20
+  (0.1ms) rollback transaction
21
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+ Migrating to CreateAnnouncementTables (20141004214002)
24
+  (0.1ms) begin transaction
25
+  (0.4ms) DROP TABLE "announcements"
26
+  (0.4ms) DROP TABLE "announcements_reads"
27
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20141004214002'
28
+  (0.8ms) commit transaction
29
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
+ Migrating to CreateAnnouncementTables (20141004214002)
32
+  (0.1ms) begin transaction
33
+  (0.4ms) CREATE TABLE "starburst_announcements_reads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
34
+  (0.1ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
35
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004214002"]]
36
+  (1.1ms) commit transaction
37
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
+ Migrating to CreateAnnouncementTables (20141004215355)
41
+  (0.1ms) begin transaction
42
+  (0.3ms) CREATE TABLE "starburst_announcements_reads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
43
+ SQLite3::SQLException: table "starburst_announcements_reads" already exists: CREATE TABLE "starburst_announcements_reads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime)
44
+  (0.1ms) rollback transaction
45
+  (3.0ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime) 
46
+  (0.9ms) CREATE TABLE "starburst_announcements_reads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime)
47
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
48
+  (0.1ms) select sqlite_version(*)
49
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
50
+  (0.1ms) SELECT version FROM "schema_migrations"
51
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
52
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
+ Migrating to CreateUsers (20141004231338)
54
+  (0.1ms) begin transaction
55
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime) 
56
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004231338"]]
57
+  (0.6ms) commit transaction
58
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
+  (1.1ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime) 
60
+  (0.7ms) CREATE TABLE "starburst_announcements_reads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime)
61
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime) 
62
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
63
+  (0.1ms) select sqlite_version(*)
64
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (0.1ms) SELECT version FROM "schema_migrations"
66
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
67
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
68
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
69
+ Migrating to CreateUsers (20141004231338)
70
+  (0.1ms) begin transaction
71
+  (0.5ms) DROP TABLE "users"
72
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20141004231338'
73
+  (0.6ms) commit transaction
74
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
75
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
77
+ Migrating to CreateAnnouncementTables (20141004214002)
78
+  (0.1ms) begin transaction
79
+  (0.4ms) DROP TABLE "starburst_announcements"
80
+  (0.1ms) DROP TABLE "starburst_announcement_views"
81
+ SQLite3::SQLException: no such table: starburst_announcement_views: DROP TABLE "starburst_announcement_views"
82
+  (0.8ms) rollback transaction
83
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
84
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
85
+ Migrating to CreateAnnouncementTables (20141004214002)
86
+  (0.1ms) begin transaction
87
+  (0.4ms) DROP TABLE "starburst_announcements"
88
+  (0.3ms) DROP TABLE "starburst_announcements_reads"
89
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20141004214002'
90
+  (1.3ms) commit transaction
91
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
92
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
93
+ Migrating to CreateAnnouncementTables (20141004214002)
94
+  (0.1ms) begin transaction
95
+  (0.6ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
96
+  (0.2ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
97
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004214002"]]
98
+  (1.1ms) commit transaction
99
+ Migrating to CreateUsers (20141004231338)
100
+  (0.1ms) begin transaction
101
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime)
102
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004231338"]]
103
+  (0.6ms) commit transaction
104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
105
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
106
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
107
+  (1.0ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
108
+  (0.7ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
109
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime) 
110
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
111
+  (0.1ms) select sqlite_version(*)
112
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
113
+  (0.1ms) SELECT version FROM "schema_migrations"
114
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
115
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
116
+
117
+
118
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:07:31 -0400
119
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
120
+ Processing by Rails::WelcomeController#index as HTML
121
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (2.1ms)
122
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
123
+
124
+
125
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:14:12 -0400
126
+ Processing by Rails::WelcomeController#index as HTML
127
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
128
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
129
+
130
+
131
+ Started GET "/pages/home" for 127.0.0.1 at 2014-10-06 11:14:16 -0400
132
+
133
+ ActionController::RoutingError (No route matches [GET] "/pages/home"):
134
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
135
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
136
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
137
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
138
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
139
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
140
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
141
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
142
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
143
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
144
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
145
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
146
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
147
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
148
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
149
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
150
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
151
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
152
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
153
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
154
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
155
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
156
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
157
+
158
+
159
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (37.4ms)
160
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
161
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
162
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.1ms)
163
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.9ms)
164
+
165
+
166
+ Started GET "/pages/home.html" for 127.0.0.1 at 2014-10-06 11:14:19 -0400
167
+
168
+ ActionController::RoutingError (No route matches [GET] "/pages/home.html"):
169
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
170
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
171
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
172
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
173
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
174
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
175
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
176
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
177
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
178
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
179
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
180
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
181
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
182
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
183
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
184
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
185
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
186
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
187
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
188
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
189
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
190
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
191
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
192
+
193
+
194
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
195
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
196
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
197
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
198
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.6ms)
199
+
200
+
201
+ Started GET "/pages/home.html" for 127.0.0.1 at 2014-10-06 11:14:37 -0400
202
+
203
+ ActionController::RoutingError (No route matches [GET] "/pages/home.html"):
204
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
205
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
206
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
207
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
208
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
209
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
210
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
211
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
212
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
213
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
214
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
215
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
216
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
217
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
218
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
219
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
220
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
221
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
222
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
223
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
224
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
225
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
226
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
227
+
228
+
229
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
230
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
231
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
232
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
233
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.7ms)
234
+
235
+
236
+ Started GET "/pages/home" for 127.0.0.1 at 2014-10-06 11:14:40 -0400
237
+
238
+ ActionController::RoutingError (No route matches [GET] "/pages/home"):
239
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
240
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
241
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
242
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
243
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
244
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
245
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
246
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
247
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
248
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
249
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
250
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
252
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
253
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
254
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
255
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
256
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
257
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
258
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
259
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
260
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
261
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
262
+
263
+
264
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
265
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
266
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
267
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
268
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.7ms)
269
+
270
+
271
+ Started GET "/pages/home" for 127.0.0.1 at 2014-10-06 11:14:51 -0400
272
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
273
+
274
+ ActionController::RoutingError (No route matches [GET] "/pages/home"):
275
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
276
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
277
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
278
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
279
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
280
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
281
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
282
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
283
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
284
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
285
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
286
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
287
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
288
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
289
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
290
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
291
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
292
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
293
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
294
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
295
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
296
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
297
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
298
+
299
+
300
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
301
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
302
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
303
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms)
304
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.0ms)
305
+
306
+
307
+ Started GET "/pages/home" for 127.0.0.1 at 2014-10-06 11:14:52 -0400
308
+
309
+ ActionController::RoutingError (No route matches [GET] "/pages/home"):
310
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
311
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
312
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
313
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
314
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
315
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
316
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
317
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
318
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
319
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
320
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
321
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
322
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
323
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
324
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
325
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
326
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
327
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
328
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
329
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
330
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
331
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
332
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
333
+
334
+
335
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
336
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
337
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
338
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
339
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.1ms)
340
+
341
+
342
+ Started GET "/pages/home" for 127.0.0.1 at 2014-10-06 11:14:53 -0400
343
+
344
+ ActionController::RoutingError (No route matches [GET] "/pages/home"):
345
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
346
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
347
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
348
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
349
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
350
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
351
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
352
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
353
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
354
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
355
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
356
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
357
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
358
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
359
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
360
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
361
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
362
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
363
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
364
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
365
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
366
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
367
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
368
+
369
+
370
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
371
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
372
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
373
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
374
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.2ms)
375
+
376
+
377
+ Started GET "/pages/home" for 127.0.0.1 at 2014-10-06 11:15:02 -0400
378
+
379
+ ActionController::RoutingError (No route matches [GET] "/pages/home"):
380
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
381
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
382
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
383
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
384
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
385
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
386
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
387
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
388
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
389
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
390
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
391
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
392
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
393
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
394
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
395
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
396
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
397
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
398
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
399
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
400
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
401
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
402
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
403
+
404
+
405
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
406
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
407
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
408
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
409
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.4ms)
410
+
411
+
412
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:15:21 -0400
413
+ Processing by PagesController#home as HTML
414
+ Rendered pages/home.html.erb within layouts/application (0.3ms)
415
+ Completed 500 Internal Server Error in 49ms
416
+
417
+ ActionView::Template::Error (undefined method `current_announcement' for #<ActionDispatch::Routing::RoutesProxy:0x007f937e617fb0>):
418
+ 7: <%= csrf_meta_tags %>
419
+ 8: </head>
420
+ 9: <body>
421
+ 10: <%= starburst.current_announcement %>
422
+ 11: <%= yield %>
423
+ 12:
424
+ 13: </body>
425
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3474964537037496783_70135711915100'
426
+
427
+
428
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
429
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
430
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.3ms)
431
+
432
+
433
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:20:25 -0400
434
+ Processing by PagesController#home as HTML
435
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
436
+ Completed 500 Internal Server Error in 14ms
437
+
438
+ ActionView::Template::Error (undefined local variable or method `current_announcement' for #<#<Class:0x007f937c5c3980>:0x007f93800b1948>):
439
+ 7: <%= csrf_meta_tags %>
440
+ 8: </head>
441
+ 9: <body>
442
+ 10: <%= current_announcement %>
443
+ 11: <%= yield %>
444
+ 12:
445
+ 13: </body>
446
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3474964537037496783_70135742582060'
447
+
448
+
449
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
450
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
451
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.7ms)
452
+
453
+
454
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:41:41 -0400
455
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
456
+ Processing by PagesController#home as HTML
457
+ Rendered pages/home.html.erb within layouts/application (1.1ms)
458
+ Completed 500 Internal Server Error in 60ms
459
+
460
+ ActionView::Template::Error (undefined local variable or method `current_announcement' for #<#<Class:0x007f96f43a4d68>:0x007f96f43b5410>):
461
+ 7: <%= csrf_meta_tags %>
462
+ 8: </head>
463
+ 9: <body>
464
+ 10: <%= current_announcement %>
465
+ 11: <%= yield %>
466
+ 12:
467
+ 13: </body>
468
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1462920363195638927_70143161257080'
469
+
470
+
471
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
472
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
473
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.1ms)
474
+
475
+
476
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:42:04 -0400
477
+ Processing by PagesController#home as HTML
478
+ Rendered pages/home.html.erb within layouts/application (0.0ms)
479
+ Completed 500 Internal Server Error in 10ms
480
+
481
+ ActionView::Template::Error (undefined method `current_announcement' for Starburst::Engine:Class):
482
+ 7: <%= csrf_meta_tags %>
483
+ 8: </head>
484
+ 9: <body>
485
+ 10: <%= Starburst::Engine.current_announcement %>
486
+ 11: <%= yield %>
487
+ 12:
488
+ 13: </body>
489
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1462920363195638927_70143189456000'
490
+
491
+
492
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
493
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
494
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.0ms)
495
+
496
+
497
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:42:12 -0400
498
+ Processing by PagesController#home as HTML
499
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
500
+ Completed 500 Internal Server Error in 11ms
501
+
502
+ ActionView::Template::Error (undefined method `current_announcement' for #<Module:0x007f96f3bf5a40>):
503
+ 7: <%= csrf_meta_tags %>
504
+ 8: </head>
505
+ 9: <body>
506
+ 10: <%= Starburst::Engine.helpers.current_announcement %>
507
+ 11: <%= yield %>
508
+ 12:
509
+ 13: </body>
510
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1462920363195638927_70143154936820'
511
+
512
+
513
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
514
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (41.7ms)
515
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.4ms)
516
+
517
+
518
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:53:24 -0400
519
+
520
+ AbstractController::Helpers::MissingHelperError (Missing helper file helpers/announcements_helper.rb):
521
+ app/controllers/application_controller.rb:5:in `<class:ApplicationController>'
522
+ app/controllers/application_controller.rb:1:in `<top (required)>'
523
+ app/controllers/pages_controller.rb:1:in `<top (required)>'
524
+
525
+
526
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
527
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
528
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
529
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.9ms)
530
+
531
+
532
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:53:55 -0400
533
+
534
+ AbstractController::Helpers::MissingHelperError (Missing helper file helpers/announcements_helper.rb):
535
+ app/controllers/application_controller.rb:5:in `<class:ApplicationController>'
536
+ app/controllers/application_controller.rb:1:in `<top (required)>'
537
+ app/controllers/pages_controller.rb:1:in `<top (required)>'
538
+
539
+
540
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
541
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
542
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
543
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
544
+
545
+
546
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:54:05 -0400
547
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
548
+
549
+ AbstractController::Helpers::MissingHelperError (Missing helper file helpers/announcements_helper.rb):
550
+ app/controllers/application_controller.rb:5:in `<class:ApplicationController>'
551
+ app/controllers/application_controller.rb:1:in `<top (required)>'
552
+ app/controllers/pages_controller.rb:1:in `<top (required)>'
553
+
554
+
555
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
556
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
557
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.1ms)
558
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.4ms)
559
+
560
+
561
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:55:20 -0400
562
+ Processing by PagesController#home as HTML
563
+ Rendered pages/home.html.erb within layouts/application (0.3ms)
564
+ Completed 500 Internal Server Error in 18ms
565
+
566
+ ActionView::Template::Error (Missing partial starburst/_announcements with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
567
+ * "/Users/coreym/Documents/starburst/spec/dummy/app/views"
568
+ * "/Users/coreym/Documents/starburst/app/views"
569
+ ):
570
+ 7: <%= csrf_meta_tags %>
571
+ 8: </head>
572
+ 9: <body>
573
+ 10: <%= render :partial => "starburst/announcements" %>
574
+ 11: <%= yield %>
575
+ 12:
576
+ 13: </body>
577
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1283896757978531791_70184901341040'
578
+
579
+
580
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
581
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
582
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.6ms)
583
+
584
+
585
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:55:50 -0400
586
+ Processing by PagesController#home as HTML
587
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
588
+ Completed 500 Internal Server Error in 9ms
589
+
590
+ ActionView::Template::Error (Missing partial starburst/_announcement_foundation with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
591
+ * "/Users/coreym/Documents/starburst/spec/dummy/app/views"
592
+ * "/Users/coreym/Documents/starburst/app/views"
593
+ ):
594
+ 7: <%= csrf_meta_tags %>
595
+ 8: </head>
596
+ 9: <body>
597
+ 10: <%= render :partial => "starburst/announcement_foundation" %>
598
+ 11: <%= yield %>
599
+ 12:
600
+ 13: </body>
601
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1283896757978531791_70184922411920'
602
+
603
+
604
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
605
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
606
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.2ms)
607
+
608
+
609
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:56:02 -0400
610
+ Processing by PagesController#home as HTML
611
+ Rendered pages/home.html.erb within layouts/application (0.0ms)
612
+ Completed 500 Internal Server Error in 9ms
613
+
614
+ ActionView::Template::Error (Missing partial starburst/announcements/_announcement_foundation with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
615
+ * "/Users/coreym/Documents/starburst/spec/dummy/app/views"
616
+ * "/Users/coreym/Documents/starburst/app/views"
617
+ ):
618
+ 7: <%= csrf_meta_tags %>
619
+ 8: </head>
620
+ 9: <body>
621
+ 10: <%= render :partial => "starburst/announcements/announcement_foundation" %>
622
+ 11: <%= yield %>
623
+ 12:
624
+ 13: </body>
625
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1283896757978531791_70184922835880'
626
+
627
+
628
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
629
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
630
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.8ms)
631
+
632
+
633
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:56:13 -0400
634
+ Processing by PagesController#home as HTML
635
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
636
+ Completed 500 Internal Server Error in 11ms
637
+
638
+ ActionView::Template::Error (Missing partial pages/_announcement_foundation, application/_announcement_foundation with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
639
+ * "/Users/coreym/Documents/starburst/spec/dummy/app/views"
640
+ * "/Users/coreym/Documents/starburst/app/views"
641
+ ):
642
+ 7: <%= csrf_meta_tags %>
643
+ 8: </head>
644
+ 9: <body>
645
+ 10: <%= render :partial => "announcement_foundation" %>
646
+ 11: <%= yield %>
647
+ 12:
648
+ 13: </body>
649
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1283896757978531791_70184915899720'
650
+
651
+
652
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
653
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
654
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.7ms)
655
+
656
+
657
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:56:24 -0400
658
+ Processing by PagesController#home as HTML
659
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
660
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (12.0ms)
661
+ Completed 500 Internal Server Error in 26ms
662
+
663
+ ActionView::Template::Error (undefined local variable or method `current_announcement' for #<#<Class:0x007faa64384120>:0x007faa6444d818>):
664
+ 1: <% if current_announcement %>
665
+ 2: <div data-alert class="alert-box" id="one-time-announcement">
666
+ 3: <p><%= current_announcement.body %></p>
667
+ 4: <%= link_to "&times;".html_safe, mark_as_read_path(current_announcement.id), :method => :post, :remote => true, :id => "one-time-announcements-close", :class => "close" %>
668
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1283896757978531791_70184901780940'
669
+
670
+
671
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
672
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
673
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.5ms)
674
+
675
+
676
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:58:28 -0400
677
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
678
+ Processing by PagesController#home as HTML
679
+ Rendered pages/home.html.erb within layouts/application (0.8ms)
680
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (38.1ms)
681
+ Completed 500 Internal Server Error in 71ms
682
+
683
+ ActionView::Template::Error (undefined local variable or method `current_announcement' for #<#<Class:0x007fedd5b70c80>:0x007fedd5b7bd88>):
684
+ 1: <% if current_announcement %>
685
+ 2: <div data-alert class="alert-box" id="one-time-announcement">
686
+ 3: <p><%= current_announcement.body %></p>
687
+ 4: <%= link_to "&times;".html_safe, mark_as_read_path(current_announcement.id), :method => :post, :remote => true, :id => "one-time-announcements-close", :class => "close" %>
688
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___4527933540062745118_70329734906520'
689
+
690
+
691
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
692
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
693
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
694
+
695
+
696
+ Started GET "/" for 127.0.0.1 at 2014-10-06 11:58:30 -0400
697
+ Processing by PagesController#home as HTML
698
+ Rendered pages/home.html.erb within layouts/application (0.0ms)
699
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (6.3ms)
700
+ Completed 500 Internal Server Error in 15ms
701
+
702
+ ActionView::Template::Error (undefined local variable or method `current_announcement' for #<#<Class:0x007fedd5b70c80>:0x007fedd5ab0f48>):
703
+ 1: <% if current_announcement %>
704
+ 2: <div data-alert class="alert-box" id="one-time-announcement">
705
+ 3: <p><%= current_announcement.body %></p>
706
+ 4: <%= link_to "&times;".html_safe, mark_as_read_path(current_announcement.id), :method => :post, :remote => true, :id => "one-time-announcements-close", :class => "close" %>
707
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___4527933540062745118_70329734906520'
708
+
709
+
710
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
711
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
712
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.1ms)
713
+
714
+
715
+ Started GET "/" for 127.0.0.1 at 2014-10-06 12:00:28 -0400
716
+ Processing by PagesController#home as HTML
717
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
718
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.0ms)
719
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
720
+
721
+
722
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 12:00:28 -0400
723
+
724
+
725
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 12:00:28 -0400
726
+
727
+
728
+ Started GET "/" for 127.0.0.1 at 2014-10-06 12:00:38 -0400
729
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
730
+ Processing by PagesController#home as HTML
731
+ Rendered pages/home.html.erb within layouts/application (1.3ms)
732
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.6ms)
733
+ Completed 200 OK in 59ms (Views: 58.3ms | ActiveRecord: 0.0ms)
734
+
735
+
736
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 12:00:38 -0400
737
+
738
+
739
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 12:00:38 -0400
740
+
741
+
742
+ Started GET "/" for 127.0.0.1 at 2014-10-06 12:05:12 -0400
743
+ Processing by PagesController#home as HTML
744
+ Rendered pages/home.html.erb within layouts/application (0.0ms)
745
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.1ms)
746
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
747
+
748
+
749
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 12:05:12 -0400
750
+
751
+
752
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 12:05:12 -0400
753
+
754
+
755
+ Started GET "/" for 127.0.0.1 at 2014-10-06 12:18:32 -0400
756
+ Processing by PagesController#home as HTML
757
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
758
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.1ms)
759
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
760
+
761
+
762
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 12:18:32 -0400
763
+
764
+
765
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 12:18:32 -0400
766
+
767
+
768
+ Started GET "/" for 127.0.0.1 at 2014-10-06 12:18:50 -0400
769
+ Processing by PagesController#home as HTML
770
+ Rendered pages/home.html.erb within layouts/application (0.0ms)
771
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.6ms)
772
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
773
+
774
+
775
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 12:18:50 -0400
776
+
777
+
778
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 12:18:50 -0400
779
+
780
+
781
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:08:21 -0400
782
+ Processing by PagesController#home as HTML
783
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
784
+ Completed 500 Internal Server Error in 11ms
785
+
786
+ ActionView::Template::Error (undefined method `body' for nil:NilClass):
787
+ 7: <%= csrf_meta_tags %>
788
+ 8: </head>
789
+ 9: <body>
790
+ 10: <%= current_announcement.body %>
791
+ 11: <%= yield %>
792
+ 12:
793
+ 13: </body>
794
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___386283018006145706_70281322210360'
795
+
796
+
797
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
798
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
799
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.8ms)
800
+
801
+
802
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:08:38 -0400
803
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
804
+ Processing by PagesController#home as HTML
805
+ Rendered pages/home.html.erb within layouts/application (1.3ms)
806
+ Completed 500 Internal Server Error in 39ms
807
+
808
+ ActionView::Template::Error (undefined method `body' for nil:NilClass):
809
+ 7: <%= csrf_meta_tags %>
810
+ 8: </head>
811
+ 9: <body>
812
+ 10: <%= current_announcement.body %>
813
+ 11: <%= yield %>
814
+ 12:
815
+ 13: </body>
816
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3649886047208972519_70127586615740'
817
+
818
+
819
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
820
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
821
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.1ms)
822
+
823
+
824
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:09:49 -0400
825
+ Processing by PagesController#home as HTML
826
+ Completed 500 Internal Server Error in 2ms
827
+
828
+ NoMethodError (undefined method `helper' for #<PagesController:0x007f8fb2ae9a90>):
829
+ app/controllers/pages_controller.rb:3:in `home'
830
+
831
+
832
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
833
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
834
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
835
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (53.1ms)
836
+
837
+
838
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:09:57 -0400
839
+ Processing by PagesController#home as HTML
840
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
841
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.6ms)
842
+ Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms)
843
+
844
+
845
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 13:09:57 -0400
846
+
847
+
848
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 13:09:57 -0400
849
+
850
+
851
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:09:58 -0400
852
+ Processing by PagesController#home as HTML
853
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
854
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.0ms)
855
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
856
+
857
+
858
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 13:09:58 -0400
859
+
860
+
861
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 13:09:58 -0400
862
+
863
+
864
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:10:14 -0400
865
+ Processing by PagesController#home as HTML
866
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
867
+ Completed 500 Internal Server Error in 12ms
868
+
869
+ ActionView::Template::Error (undefined method `body' for nil:NilClass):
870
+ 7: <%= csrf_meta_tags %>
871
+ 8: </head>
872
+ 9: <body>
873
+ 10: <%= current_announcement.body %>
874
+ 11: <%= yield %>
875
+ 12:
876
+ 13: </body>
877
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3649886047208972519_70127614316540'
878
+
879
+
880
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
881
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
882
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.6ms)
883
+
884
+
885
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:10:24 -0400
886
+ Processing by PagesController#home as HTML
887
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
888
+ Completed 500 Internal Server Error in 16ms
889
+
890
+ ActionView::Template::Error (undefined method `is_defined?' for #<#<Class:0x007f8fb7143d38>:0x007f8fb7274ef0>):
891
+ 7: <%= csrf_meta_tags %>
892
+ 8: </head>
893
+ 9: <body>
894
+ 10: <%= is_defined? current_announcement %>
895
+ 11: <%= yield %>
896
+ 12:
897
+ 13: </body>
898
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3649886047208972519_70127614945900'
899
+
900
+
901
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
902
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
903
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms)
904
+
905
+
906
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:11:44 -0400
907
+ Processing by PagesController#home as HTML
908
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
909
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.1ms)
910
+ Completed 500 Internal Server Error in 12ms
911
+
912
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::Announcement):
913
+ 8: </head>
914
+ 9: <body>
915
+ 10: <%= render :partial => "announcements/starburst/announcement_foundation" %>
916
+ 11: <%= mark_as_read_path(Announcement.last.id) %>
917
+ 12: <%= yield %>
918
+ 13:
919
+ 14: </body>
920
+ app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb___3649886047208972519_70127586162420'
921
+
922
+
923
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
924
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
925
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.8ms)
926
+
927
+
928
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:11:54 -0400
929
+ Processing by PagesController#home as HTML
930
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
931
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.1ms)
932
+ Starburst::Announcement Load (0.1ms) SELECT "starburst_announcements".* FROM "starburst_announcements" ORDER BY "starburst_announcements"."id" DESC LIMIT 1
933
+ Completed 500 Internal Server Error in 22ms
934
+
935
+ ActionView::Template::Error (undefined method `id' for nil:NilClass):
936
+ 8: </head>
937
+ 9: <body>
938
+ 10: <%= render :partial => "announcements/starburst/announcement_foundation" %>
939
+ 11: <%= mark_as_read_path(Starburst::Announcement.last.id) %>
940
+ 12: <%= yield %>
941
+ 13:
942
+ 14: </body>
943
+ app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb___3649886047208972519_70127588221000'
944
+
945
+
946
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
947
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
948
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.7ms)
949
+  (0.1ms) begin transaction
950
+ SQL (0.4ms) INSERT INTO "starburst_announcements" ("body", "created_at", "limit_to_users", "updated_at") VALUES (?, ?, ?, ?) [["body", "test announcement"], ["created_at", "2014-10-06 17:12:20.362911"], ["limit_to_users", nil], ["updated_at", "2014-10-06 17:12:20.362911"]]
951
+  (1.0ms) commit transaction
952
+
953
+
954
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:12:30 -0400
955
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
956
+ Processing by PagesController#home as HTML
957
+ Rendered pages/home.html.erb within layouts/application (1.5ms)
958
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.6ms)
959
+ Starburst::Announcement Load (0.1ms) SELECT "starburst_announcements".* FROM "starburst_announcements" ORDER BY "starburst_announcements"."id" DESC LIMIT 1
960
+ Completed 500 Internal Server Error in 93ms
961
+
962
+ ActionView::Template::Error (undefined method `mark_as_read_path' for #<#<Class:0x007fa41e13bd88>:0x007fa41e13a0c8>):
963
+ 8: </head>
964
+ 9: <body>
965
+ 10: <%= render :partial => "announcements/starburst/announcement_foundation" %>
966
+ 11: <%= mark_as_read_path(Starburst::Announcement.last.id) %>
967
+ 12: <%= yield %>
968
+ 13:
969
+ 14: </body>
970
+ app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__2904241530790515309_70171431376000'
971
+
972
+
973
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
974
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
975
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.3ms)
976
+
977
+
978
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:13:29 -0400
979
+ Processing by PagesController#home as HTML
980
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
981
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.0ms)
982
+ Starburst::Announcement Load (0.2ms) SELECT "starburst_announcements".* FROM "starburst_announcements" ORDER BY "starburst_announcements"."id" DESC LIMIT 1
983
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms)
984
+
985
+
986
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 13:13:30 -0400
987
+
988
+
989
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 13:13:30 -0400
990
+
991
+
992
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:13:47 -0400
993
+ Processing by PagesController#home as HTML
994
+ Rendered pages/home.html.erb within layouts/application (0.1ms)
995
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.1ms)
996
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
997
+
998
+
999
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 13:13:47 -0400
1000
+
1001
+
1002
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 13:13:47 -0400
1003
+
1004
+
1005
+ Started GET "/" for 127.0.0.1 at 2014-10-06 13:14:22 -0400
1006
+ Processing by PagesController#home as HTML
1007
+ Rendered pages/home.html.erb within layouts/application (0.0ms)
1008
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (0.5ms)
1009
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
1010
+
1011
+
1012
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 13:14:22 -0400
1013
+
1014
+
1015
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 13:14:22 -0400
1016
+
1017
+
1018
+ Started GET "/" for 127.0.0.1 at 2014-10-06 15:04:09 -0400
1019
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1020
+
1021
+ ActiveRecord::PendingMigrationError (
1022
+
1023
+ Migrations are pending. To resolve this issue, run:
1024
+
1025
+ bin/rake db:migrate RAILS_ENV=development
1026
+
1027
+ ):
1028
+ activerecord (4.1.6) lib/active_record/migration.rb:389:in `check_pending!'
1029
+ activerecord (4.1.6) lib/active_record/migration.rb:377:in `call'
1030
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1031
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1032
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1033
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1034
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1035
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1036
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1037
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1038
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1039
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1040
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1041
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1042
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1043
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1044
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1045
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1046
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1047
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1048
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1049
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1050
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1051
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1052
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1053
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1054
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1055
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1056
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1057
+ /Users/coreym/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1058
+
1059
+
1060
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1061
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1062
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1063
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms)
1064
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1065
+ Migrating to AddDeviseToUsers (20141006190332)
1066
+  (0.1ms) begin transaction
1067
+  (0.5ms) ALTER TABLE "users" ADD "email" varchar(255) DEFAULT '' NOT NULL
1068
+  (0.1ms) ALTER TABLE "users" ADD "encrypted_password" varchar(255) DEFAULT '' NOT NULL
1069
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar(255)
1070
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
1071
+  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime
1072
+  (0.3ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
1073
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
1074
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
1075
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar(255)
1076
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar(255)
1077
+  (0.0ms) select sqlite_version(*)
1078
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1079
+  (0.3ms)  SELECT sql
1080
+ FROM sqlite_master
1081
+ WHERE name='index_users_on_email' AND type='index'
1082
+ UNION ALL
1083
+ SELECT sql
1084
+ FROM sqlite_temp_master
1085
+ WHERE name='index_users_on_email' AND type='index'
1086
+ 
1087
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1088
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141006190332"]]
1089
+  (0.6ms) commit transaction
1090
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1091
+  (0.1ms) SELECT sql
1092
+ FROM sqlite_master
1093
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1094
+ UNION ALL
1095
+ SELECT sql
1096
+ FROM sqlite_temp_master
1097
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1098
+
1099
+  (0.1ms)  SELECT sql
1100
+ FROM sqlite_master
1101
+ WHERE name='index_users_on_email' AND type='index'
1102
+ UNION ALL
1103
+ SELECT sql
1104
+ FROM sqlite_temp_master
1105
+ WHERE name='index_users_on_email' AND type='index'
1106
+ 
1107
+
1108
+
1109
+ Started GET "/" for 127.0.0.1 at 2014-10-06 15:05:19 -0400
1110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1111
+ Processing by PagesController#home as HTML
1112
+ Completed 401 Unauthorized in 24ms
1113
+
1114
+
1115
+ Started GET "/users/sign_in" for 127.0.0.1 at 2014-10-06 15:05:19 -0400
1116
+ Processing by Devise::SessionsController#new as HTML
1117
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/devise-3.3.0/app/views/devise/shared/_links.erb (1.6ms)
1118
+ Rendered /Users/coreym/.rvm/gems/ruby-2.0.0-p247/gems/devise-3.3.0/app/views/devise/sessions/new.html.erb within layouts/application (23.9ms)
1119
+ Starburst::Announcement Load (0.2ms) SELECT "starburst_announcements".* FROM "starburst_announcements" WHERE ((start_delivering_at < '2014-10-06 19:05:19.771596' OR start_delivering_at IS NULL)
1120
+ AND (stop_delivering_at > '2014-10-06 19:05:19.771599' OR stop_delivering_at IS NULL)) ORDER BY start_delivering_at ASC LIMIT 1
1121
+ Rendered /Users/coreym/Documents/starburst/app/views/announcements/starburst/_announcement_foundation.html.erb (52.9ms)
1122
+ Completed 200 OK in 114ms (Views: 96.3ms | ActiveRecord: 1.0ms)
1123
+
1124
+
1125
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-06 15:05:19 -0400
1126
+
1127
+
1128
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-06 15:05:19 -0400
1129
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1130
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1131
+  (0.1ms)  SELECT sql
1132
+ FROM sqlite_master
1133
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1134
+ UNION ALL
1135
+ SELECT sql
1136
+ FROM sqlite_temp_master
1137
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1138
+ 
1139
+  (0.1ms) SELECT sql
1140
+ FROM sqlite_master
1141
+ WHERE name='index_users_on_email' AND type='index'
1142
+ UNION ALL
1143
+ SELECT sql
1144
+ FROM sqlite_temp_master
1145
+ WHERE name='index_users_on_email' AND type='index'
1146
+
1147
+  (1.0ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1148
+  (0.8ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1149
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1150
+  (0.1ms) select sqlite_version(*)
1151
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1152
+  (0.1ms) SELECT sql
1153
+ FROM sqlite_master
1154
+ WHERE name='index_users_on_email' AND type='index'
1155
+ UNION ALL
1156
+ SELECT sql
1157
+ FROM sqlite_temp_master
1158
+ WHERE name='index_users_on_email' AND type='index'
1159
+
1160
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1161
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1162
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1163
+  (0.1ms) SELECT version FROM "schema_migrations"
1164
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1165
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1166
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1167
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1168
+  (0.1ms)  SELECT sql
1169
+ FROM sqlite_master
1170
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1171
+ UNION ALL
1172
+ SELECT sql
1173
+ FROM sqlite_temp_master
1174
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1175
+ 
1176
+  (0.1ms) SELECT sql
1177
+ FROM sqlite_master
1178
+ WHERE name='index_users_on_email' AND type='index'
1179
+ UNION ALL
1180
+ SELECT sql
1181
+ FROM sqlite_temp_master
1182
+ WHERE name='index_users_on_email' AND type='index'
1183
+
1184
+  (1.5ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1185
+  (0.7ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1186
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1187
+  (0.1ms) select sqlite_version(*)
1188
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1189
+  (0.1ms) SELECT sql
1190
+ FROM sqlite_master
1191
+ WHERE name='index_users_on_email' AND type='index'
1192
+ UNION ALL
1193
+ SELECT sql
1194
+ FROM sqlite_temp_master
1195
+ WHERE name='index_users_on_email' AND type='index'
1196
+
1197
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1198
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1199
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1200
+  (0.1ms) SELECT version FROM "schema_migrations"
1201
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1202
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1203
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1204
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1205
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1206
+ Migrating to AddDeviseToUsers (20141006190332)
1207
+  (0.1ms) begin transaction
1208
+  (0.1ms) rollback transaction
1209
+  (1.7ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1210
+  (0.8ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1211
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1212
+  (0.1ms) select sqlite_version(*)
1213
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1214
+  (0.1ms) SELECT sql
1215
+ FROM sqlite_master
1216
+ WHERE name='index_users_on_email' AND type='index'
1217
+ UNION ALL
1218
+ SELECT sql
1219
+ FROM sqlite_temp_master
1220
+ WHERE name='index_users_on_email' AND type='index'
1221
+
1222
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1223
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1224
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1225
+  (0.1ms) SELECT version FROM "schema_migrations"
1226
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1227
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1228
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1229
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1230
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1231
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1232
+  (0.1ms)  SELECT sql
1233
+ FROM sqlite_master
1234
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1235
+ UNION ALL
1236
+ SELECT sql
1237
+ FROM sqlite_temp_master
1238
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1239
+ 
1240
+  (0.1ms) SELECT sql
1241
+ FROM sqlite_master
1242
+ WHERE name='index_users_on_email' AND type='index'
1243
+ UNION ALL
1244
+ SELECT sql
1245
+ FROM sqlite_temp_master
1246
+ WHERE name='index_users_on_email' AND type='index'
1247
+
1248
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1249
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1250
+  (0.1ms)  SELECT sql
1251
+ FROM sqlite_master
1252
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1253
+ UNION ALL
1254
+ SELECT sql
1255
+ FROM sqlite_temp_master
1256
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1257
+ 
1258
+  (0.1ms) SELECT sql
1259
+ FROM sqlite_master
1260
+ WHERE name='index_users_on_email' AND type='index'
1261
+ UNION ALL
1262
+ SELECT sql
1263
+ FROM sqlite_temp_master
1264
+ WHERE name='index_users_on_email' AND type='index'
1265
+
1266
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1268
+  (0.1ms)  SELECT sql
1269
+ FROM sqlite_master
1270
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1271
+ UNION ALL
1272
+ SELECT sql
1273
+ FROM sqlite_temp_master
1274
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1275
+ 
1276
+  (0.1ms) SELECT sql
1277
+ FROM sqlite_master
1278
+ WHERE name='index_users_on_email' AND type='index'
1279
+ UNION ALL
1280
+ SELECT sql
1281
+ FROM sqlite_temp_master
1282
+ WHERE name='index_users_on_email' AND type='index'
1283
+
1284
+  (1.4ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1285
+  (0.7ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1286
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1287
+  (0.1ms) select sqlite_version(*)
1288
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1289
+  (0.1ms) SELECT sql
1290
+ FROM sqlite_master
1291
+ WHERE name='index_users_on_email' AND type='index'
1292
+ UNION ALL
1293
+ SELECT sql
1294
+ FROM sqlite_temp_master
1295
+ WHERE name='index_users_on_email' AND type='index'
1296
+
1297
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1298
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1299
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1300
+  (0.1ms) SELECT version FROM "schema_migrations"
1301
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1302
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1303
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1304
+  (1.0ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1305
+  (0.8ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1306
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1307
+  (0.1ms) select sqlite_version(*)
1308
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1309
+  (0.2ms) SELECT sql
1310
+ FROM sqlite_master
1311
+ WHERE name='index_users_on_email' AND type='index'
1312
+ UNION ALL
1313
+ SELECT sql
1314
+ FROM sqlite_temp_master
1315
+ WHERE name='index_users_on_email' AND type='index'
1316
+
1317
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1318
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1319
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1320
+  (0.1ms) SELECT version FROM "schema_migrations"
1321
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1322
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1323
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1324
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1325
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1326
+  (0.1ms)  SELECT sql
1327
+ FROM sqlite_master
1328
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1329
+ UNION ALL
1330
+ SELECT sql
1331
+ FROM sqlite_temp_master
1332
+ WHERE name='index_users_on_reset_password_token' AND type='index'
1333
+ 
1334
+  (0.1ms) SELECT sql
1335
+ FROM sqlite_master
1336
+ WHERE name='index_users_on_email' AND type='index'
1337
+ UNION ALL
1338
+ SELECT sql
1339
+ FROM sqlite_temp_master
1340
+ WHERE name='index_users_on_email' AND type='index'
1341
+
1342
+  (1.3ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1343
+  (0.6ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1344
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1345
+  (0.1ms) select sqlite_version(*)
1346
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1347
+  (0.1ms) SELECT sql
1348
+ FROM sqlite_master
1349
+ WHERE name='index_users_on_email' AND type='index'
1350
+ UNION ALL
1351
+ SELECT sql
1352
+ FROM sqlite_temp_master
1353
+ WHERE name='index_users_on_email' AND type='index'
1354
+
1355
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1356
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1357
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1358
+  (0.1ms) SELECT version FROM "schema_migrations"
1359
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1360
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1361
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1362
+  (1.4ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1363
+  (1.1ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1364
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1365
+  (0.1ms) select sqlite_version(*)
1366
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1367
+  (0.1ms) SELECT sql
1368
+ FROM sqlite_master
1369
+ WHERE name='index_users_on_email' AND type='index'
1370
+ UNION ALL
1371
+ SELECT sql
1372
+ FROM sqlite_temp_master
1373
+ WHERE name='index_users_on_email' AND type='index'
1374
+
1375
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1376
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1377
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1378
+  (0.2ms) SELECT version FROM "schema_migrations"
1379
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1380
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1381
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1382
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1383
+  (1.6ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1384
+  (1.2ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1385
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255)) 
1386
+  (0.1ms) select sqlite_version(*)
1387
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1388
+  (0.1ms) SELECT sql
1389
+ FROM sqlite_master
1390
+ WHERE name='index_users_on_email' AND type='index'
1391
+ UNION ALL
1392
+ SELECT sql
1393
+ FROM sqlite_temp_master
1394
+ WHERE name='index_users_on_email' AND type='index'
1395
+
1396
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
1397
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1398
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1399
+  (0.1ms) SELECT version FROM "schema_migrations"
1400
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006190332')
1401
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1402
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')
1403
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1404
+  (0.1ms) select sqlite_version(*)
1405
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1406
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1407
+ Migrating to CreateAnnouncementTables (20141004214002)
1408
+  (0.1ms) begin transaction
1409
+  (0.4ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime)
1410
+  (0.1ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime) 
1411
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004214002"]]
1412
+  (0.6ms) commit transaction
1413
+ Migrating to CreateUsers (20141004231338)
1414
+  (0.1ms) begin transaction
1415
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime) 
1416
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141004231338"]]
1417
+  (0.6ms) commit transaction
1418
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1419
+  (1.3ms) CREATE TABLE "starburst_announcement_views" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "announcement_id" integer, "created_at" datetime, "updated_at" datetime) 
1420
+  (0.6ms) CREATE TABLE "starburst_announcements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "start_delivering_at" datetime, "stop_delivering_at" datetime, "limit_to_users" text, "created_at" datetime, "updated_at" datetime)
1421
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subscription" varchar(255), "created_at" datetime, "updated_at" datetime) 
1422
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1423
+  (0.1ms) select sqlite_version(*)
1424
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1425
+  (0.2ms) SELECT version FROM "schema_migrations"
1426
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004231338')
1427
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141004214002')