effective_email_templates 0.3.1 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c13e3d65af439b35d89c4033d870d692d08698f3
4
- data.tar.gz: 485f5e8e247057d1b3604c0801e20953592ccef1
3
+ metadata.gz: a750f7470cb2821cf09fcda4fada4b4128e43d0a
4
+ data.tar.gz: 93aeb104da26368d60c81152fb69af94be98186a
5
5
  SHA512:
6
- metadata.gz: 6d0c7473ffc31eeaacdf7e00d79e00447fd577096df058fad22cbae046fb7a269576c2665c647f6410b6ec587a432840726ba16a49ed4c2efbb095f45cf236cd
7
- data.tar.gz: 9f6d12909a9cf44bf9a67f8d670e814b2d1a1fdc01f2015997c98c88eb845465026fe1bbc812dd76ca42031420643021b6fd10c7e99ea49609e6527568b4bf05
6
+ metadata.gz: 5edcec2f892ae8cbe1e945df57ea0895edae1faf245f0de80dd1eae5126009fc7bdf29ce9bdfd5f10a161942a4187f206c498bd1d67e8b5d90dec17d1bbd786d
7
+ data.tar.gz: a889e773667891eefca64c1400f8ccb904010e4b3575375e5620904cf421edcb5a2f2d803b14fa71a83cb6dc5cc422793b19484160d67ce08977fe0a6d1427e0
data/README.md CHANGED
@@ -43,34 +43,41 @@ rake db:migrate
43
43
  This is very similar to creating other emails in Rails.
44
44
 
45
45
  1. Create a new mailer object (i.e. `/app/mailers/template_mailer.rb`)
46
- - Mailer objects need to inherit from `Effective::LiquidMailer`
46
+ - Mailer objects need to inherit from `Effective::LiquidMailer`
47
+
47
48
  2. Create a method inside the mailer object based on the name of your email (i.e. `def welcome_email`)
49
+
48
50
  3. Create a default email template file (i.e. `/app/views/template_mailer/welcome_email.liquid`)
49
- - Start out with a plain text email (without any variables and we'll show you how to add dynamic content below)
50
- - Add the email subject and from address at the top of the email. For example:
51
-
52
- ```yaml
53
- ---
54
- subject: 'Hello User' # REQUIRED
55
- from: 'effective@email_templates.com' # REQUIRED
56
- cc: 'my_friend@email_templates.com' # optional
57
- bcc: 'my_secret_friend@example.com' # optional
58
- ---
59
- Hello new user! I'm a liquid template that will be editable to site admins and/or users.
60
- ```
51
+ - Start out with a plain text email (without any variables and we'll show you how to add dynamic content below)
52
+ - Add the email subject and from address at the top of the email. For example:
53
+
54
+ ```yaml
55
+ ---
56
+ subject: 'Hello User' # REQUIRED
57
+ from: 'effective@email_templates.com' # REQUIRED
58
+ cc: 'my_friend@email_templates.com' # optional
59
+ bcc: 'my_secret_friend@example.com' # optional
60
+ ---
61
+ Hello new user! I'm a liquid template that will be editable to site admins and/or users.
62
+ ```
61
63
 
62
64
  4. Run this rake task to import this email template from the filesystem to the database (where it will be editable)
63
- - Remember to do this in your staging and production environments as well!
64
- - This task can be run even when no new templates have been added and will not overwrite existing
65
- database templates. This allows you to run the rake task in a deploy script if you are adding new
66
- templates frequently.
65
+ - Remember to do this in your staging and production environments as well!
66
+ - This task can be run even when no new templates have been added and will not overwrite existing
67
+ database templates. This allows you to run the rake task in a deploy script if you are adding new
68
+ templates frequently.
67
69
 
68
- ```console
69
- rake effective_email_templates:import_default_views
70
- ```
70
+ ```console
71
+ rake effective_email_templates:import_templates
72
+ ```
71
73
 
72
74
  5. Visit `localhost:3000/admin/email_templates` in your browser to edit templates.
73
75
 
76
+ 6. Run this rake task to overwrite to initial state default database email templates that have already been changed. This will touch email templates created only from filesystem.
77
+ ```console
78
+ rake effective_email_templates:overwrite_templates
79
+ ```
80
+
74
81
 
75
82
  ## Making Content Dynamic
76
83
 
@@ -1,21 +1,15 @@
1
1
  module EffectiveEmailTemplates
2
2
  class TemplateImporter
3
- def self.invoke(importer = new)
4
- importer.invoke
3
+ def self.invoke(importer = new, overwrite: false)
4
+ importer.invoke(overwrite)
5
5
  end
6
6
 
7
- def invoke
7
+ def invoke(overwrite = false)
8
8
  Dir[Rails.root.join('app', 'views', '**', '*.liquid')].each do |liquid_template_filepath|
9
9
  slug = File.basename(liquid_template_filepath, '.liquid')
10
- next if Effective::EmailTemplate.where(slug: slug).present?
10
+ template = Effective::EmailTemplate.find_or_initialize_by(slug: slug)
11
11
 
12
- template = Effective::EmailTemplate.new(slug: slug)
13
-
14
- file = File.new(liquid_template_filepath, "r")
15
- template = add_template_meta(file, template)
16
- template.body = extract_template_body(file)
17
- template.save
18
- print_errors(template, liquid_template_filepath) unless template.valid?
12
+ update_template(template, liquid_template_filepath) if (template.persisted? && overwrite) || template.new_record?
19
13
  end
20
14
  end
21
15
 
@@ -23,24 +17,35 @@ module EffectiveEmailTemplates
23
17
 
24
18
  def add_template_meta(file, template)
25
19
  template.attributes = File.open(file) do |f|
26
- attr = YAML::load(f)
20
+ attr = YAML.load(f)
27
21
  attr.is_a?(Hash) ? attr : {}
28
22
  end
29
23
  template
30
24
  end
31
25
 
32
- def extract_template_body file
26
+ def extract_template_body(file)
33
27
  contents = file.read
34
- return unless match = contents.match(/(---+(.|\n)+---+)/)
35
- contents.gsub(match[1], '').strip
28
+ match = contents.match(/(---+(.|\n)+---+)/)
29
+
30
+ contents.gsub(match[1], '').strip if match
36
31
  end
37
32
 
38
33
  def print_errors(template, liquid_template_filepath)
39
- puts "ERROR -- There was one or more validation errors while uploading:"
34
+ puts 'ERROR -- There was one or more validation errors while uploading:'
40
35
  puts " Email Template: #{liquid_template_filepath}"
41
36
  template.errors.each do |attribute, error|
42
37
  puts " -> #{attribute} #{error}"
43
38
  end
44
39
  end
40
+
41
+ def update_template(template, liquid_template_filepath)
42
+ file = File.new(liquid_template_filepath, 'r')
43
+
44
+ template = add_template_meta(file, template)
45
+ template.body = extract_template_body(file)
46
+ template.save
47
+
48
+ print_errors(template, liquid_template_filepath) unless template.valid?
49
+ end
45
50
  end
46
51
  end
@@ -0,0 +1,48 @@
1
+ module EffectiveEmailTemplates
2
+ class TemplateImporter
3
+ def self.invoke(importer = new)
4
+ importer.invoke
5
+ end
6
+
7
+ def invoke
8
+ binding.pry
9
+ Dir[Rails.root.join('app', 'views', '**', '*.liquid')].each do |liquid_template_filepath|
10
+ slug = File.basename(liquid_template_filepath, '.liquid')
11
+ binding.pry
12
+ next if Effective::EmailTemplate.where(slug: slug).present?
13
+
14
+ template = Effective::EmailTemplate.new(slug: slug)
15
+
16
+ file = File.new(liquid_template_filepath, "r")
17
+ template = add_template_meta(file, template)
18
+ template.body = extract_template_body(file)
19
+ template.save
20
+ print_errors(template, liquid_template_filepath) unless template.valid?
21
+ end
22
+ end
23
+
24
+ private
25
+
26
+ def add_template_meta(file, template)
27
+ template.attributes = File.open(file) do |f|
28
+ attr = YAML::load(f)
29
+ attr.is_a?(Hash) ? attr : {}
30
+ end
31
+ template
32
+ end
33
+
34
+ def extract_template_body file
35
+ contents = file.read
36
+ return unless match = contents.match(/(---+(.|\n)+---+)/)
37
+ contents.gsub(match[1], '').strip
38
+ end
39
+
40
+ def print_errors(template, liquid_template_filepath)
41
+ puts "ERROR -- There was one or more validation errors while uploading:"
42
+ puts " Email Template: #{liquid_template_filepath}"
43
+ template.errors.each do |attribute, error|
44
+ puts " -> #{attribute} #{error}"
45
+ end
46
+ end
47
+ end
48
+ end
@@ -1,3 +1,3 @@
1
1
  module EffectiveEmailTemplates
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.3'
3
3
  end
@@ -0,0 +1,3 @@
1
+ module EffectiveEmailTemplates
2
+ VERSION = '0.3.2'
3
+ end
@@ -1,5 +1,19 @@
1
1
  namespace :effective_email_templates do
2
- task :import_default_views => :environment do
2
+ desc 'Import email templates from the filesystem to the database. This rake task does not overwrite existing database templates.'
3
+ task import_templates: :environment do
3
4
  EffectiveEmailTemplates::TemplateImporter.invoke
4
5
  end
6
+
7
+ desc 'Overwrite existing default database email templates from the filesystem.'
8
+ task overwrite_templates: :environment do
9
+ puts 'By running this task, all email templates that exist in the database will be overwritten by the templates in the filesystem. Do you still want to run this task? (Y/n): '
10
+ answer = $stdin.gets.chomp
11
+
12
+ if answer.downcase == 'y'
13
+ EffectiveEmailTemplates::TemplateImporter.invoke(overwrite: true)
14
+ puts 'Default email templates have been overwritten successfully!'
15
+ else
16
+ puts 'Cancelled!'
17
+ end
18
+ end
5
19
  end
Binary file
Binary file
@@ -0,0 +1,2275 @@
1
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+  (17.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
6
+  (0.1ms) select sqlite_version(*)
7
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+  (0.2ms) SELECT version FROM "schema_migrations"
9
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ Migrating to CreateEffectiveEmailTemplates (1)
12
+  (0.1ms) begin transaction
13
+  (0.4ms) CREATE TABLE "email_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) NOT NULL, "from" varchar(255) NOT NULL, "bcc" varchar(255), "cc" varchar(255), "body" text NOT NULL, "template" text NOT NULL) 
14
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "1"]]
15
+  (0.8ms) commit transaction
16
+ Migrating to DeviseCreateUsers (20141126222940)
17
+  (0.1ms) begin transaction
18
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "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), "created_at" datetime, "updated_at" datetime) 
19
+  (0.1ms) select sqlite_version(*)
20
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
21
+  (0.1ms) SELECT sql
22
+ FROM sqlite_master
23
+ WHERE name='index_users_on_email' AND type='index'
24
+ UNION ALL
25
+ SELECT sql
26
+ FROM sqlite_temp_master
27
+ WHERE name='index_users_on_email' AND type='index'
28
+
29
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
30
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141126222940"]]
31
+  (0.6ms) commit transaction
32
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
33
+  (0.1ms)  SELECT sql
34
+ FROM sqlite_master
35
+ WHERE name='index_users_on_reset_password_token' AND type='index'
36
+ UNION ALL
37
+ SELECT sql
38
+ FROM sqlite_temp_master
39
+ WHERE name='index_users_on_reset_password_token' AND type='index'
40
+ 
41
+  (0.1ms) SELECT sql
42
+ FROM sqlite_master
43
+ WHERE name='index_users_on_email' AND type='index'
44
+ UNION ALL
45
+ SELECT sql
46
+ FROM sqlite_temp_master
47
+ WHERE name='index_users_on_email' AND type='index'
48
+
49
+  (1.0ms) CREATE TABLE "email_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) NOT NULL, "from" varchar(255) NOT NULL, "bcc" varchar(255), "cc" varchar(255), "body" text NOT NULL, "template" text NOT NULL) 
50
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "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), "created_at" datetime, "updated_at" datetime)
51
+  (0.1ms) select sqlite_version(*)
52
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
53
+  (0.1ms)  SELECT sql
54
+ FROM sqlite_master
55
+ WHERE name='index_users_on_email' AND type='index'
56
+ UNION ALL
57
+ SELECT sql
58
+ FROM sqlite_temp_master
59
+ WHERE name='index_users_on_email' AND type='index'
60
+ 
61
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
62
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
63
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
64
+  (0.1ms) SELECT version FROM "schema_migrations"
65
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141126222940')
66
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
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 DeviseCreateUsers (20141126222940)
70
+  (0.0ms) begin transaction
71
+  (0.2ms) SELECT sql
72
+ FROM sqlite_master
73
+ WHERE name='index_users_on_reset_password_token' AND type='index'
74
+ UNION ALL
75
+ SELECT sql
76
+ FROM sqlite_temp_master
77
+ WHERE name='index_users_on_reset_password_token' AND type='index'
78
+
79
+  (0.1ms)  SELECT sql
80
+ FROM sqlite_master
81
+ WHERE name='index_users_on_email' AND type='index'
82
+ UNION ALL
83
+ SELECT sql
84
+ FROM sqlite_temp_master
85
+ WHERE name='index_users_on_email' AND type='index'
86
+ 
87
+  (0.3ms) DROP INDEX "index_users_on_reset_password_token"
88
+  (0.1ms)  SELECT sql
89
+ FROM sqlite_master
90
+ WHERE name='index_users_on_email' AND type='index'
91
+ UNION ALL
92
+ SELECT sql
93
+ FROM sqlite_temp_master
94
+ WHERE name='index_users_on_email' AND type='index'
95
+ 
96
+  (0.7ms) DROP INDEX "index_users_on_email"
97
+  (0.2ms) DROP TABLE "users"
98
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20141126222940'
99
+  (0.8ms) commit transaction
100
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
101
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
102
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
+ Migrating to CreateEffectiveEmailTemplates (1)
104
+  (0.0ms) begin transaction
105
+  (0.4ms) DROP TABLE "email_templates"
106
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '1'
107
+  (0.9ms) commit transaction
108
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
109
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
110
+ Migrating to DeviseCreateUsers (20141126222940)
111
+  (0.1ms) begin transaction
112
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "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), "created_at" datetime, "updated_at" datetime) 
113
+  (0.1ms) select sqlite_version(*)
114
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
115
+  (0.1ms) SELECT sql
116
+ FROM sqlite_master
117
+ WHERE name='index_users_on_email' AND type='index'
118
+ UNION ALL
119
+ SELECT sql
120
+ FROM sqlite_temp_master
121
+ WHERE name='index_users_on_email' AND type='index'
122
+
123
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
124
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141126222940"]]
125
+  (8.8ms) commit transaction
126
+ Migrating to CreateEffectiveEmailTemplates (20141126222941)
127
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
128
+ Migrating to CreateEffectiveEmailTemplates (20141126222941)
129
+  (0.1ms) begin transaction
130
+  (0.3ms) CREATE TABLE "email_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) NOT NULL, "from" varchar(255) NOT NULL, "bcc" varchar(255), "cc" varchar(255), "slug" varchar(255) NOT NULL, "body" text NOT NULL, "template" text NOT NULL) 
131
+  (0.1ms) select sqlite_version(*)
132
+  (0.1ms) CREATE INDEX "index_email_templates_on_slug" ON "email_templates" ("slug")
133
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141126222941"]]
134
+  (8.7ms) commit transaction
135
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
136
+  (0.1ms)  SELECT sql
137
+ FROM sqlite_master
138
+ WHERE name='index_email_templates_on_slug' AND type='index'
139
+ UNION ALL
140
+ SELECT sql
141
+ FROM sqlite_temp_master
142
+ WHERE name='index_email_templates_on_slug' AND type='index'
143
+ 
144
+  (0.1ms) SELECT sql
145
+ FROM sqlite_master
146
+ WHERE name='index_users_on_reset_password_token' AND type='index'
147
+ UNION ALL
148
+ SELECT sql
149
+ FROM sqlite_temp_master
150
+ WHERE name='index_users_on_reset_password_token' AND type='index'
151
+
152
+  (0.1ms)  SELECT sql
153
+ FROM sqlite_master
154
+ WHERE name='index_users_on_email' AND type='index'
155
+ UNION ALL
156
+ SELECT sql
157
+ FROM sqlite_temp_master
158
+ WHERE name='index_users_on_email' AND type='index'
159
+ 
160
+
161
+
162
+ Started GET "/" for 127.0.0.1 at 2014-12-10 11:43:18 -0700
163
+
164
+ ActiveRecord::PendingMigrationError (
165
+
166
+ Migrations are pending. To resolve this issue, run:
167
+
168
+ bin/rake db:migrate RAILS_ENV=development
169
+
170
+ ):
171
+ activerecord (4.1.8) lib/active_record/migration.rb:389:in `check_pending!'
172
+ activerecord (4.1.8) lib/active_record/migration.rb:377:in `call'
173
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
174
+ activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
175
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
176
+ actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
177
+ actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
178
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
179
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
180
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
181
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
182
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
183
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
184
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
185
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
186
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
187
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
188
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
189
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
190
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
191
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
192
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
193
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
194
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
195
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
196
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
197
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
198
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
199
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
200
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
201
+
202
+
203
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
204
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
205
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
206
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.4ms)
207
+
208
+
209
+ Started GET "/" for 127.0.0.1 at 2014-12-10 11:43:18 -0700
210
+
211
+ ActiveRecord::PendingMigrationError (
212
+
213
+ Migrations are pending. To resolve this issue, run:
214
+
215
+ bin/rake db:migrate RAILS_ENV=development
216
+
217
+ ):
218
+ activerecord (4.1.8) lib/active_record/migration.rb:389:in `check_pending!'
219
+ activerecord (4.1.8) lib/active_record/migration.rb:377:in `call'
220
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
221
+ activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
222
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
223
+ actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
224
+ actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
225
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
226
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
227
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
228
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
229
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
230
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
231
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
232
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
233
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
234
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
235
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
236
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
237
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
238
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
239
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
240
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
241
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
242
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
243
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
244
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
245
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
246
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
247
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
248
+
249
+
250
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
251
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
252
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
253
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
254
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
255
+  (0.4ms) select sqlite_version(*)
256
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
257
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
258
+ Migrating to DeviseCreateUsers (20141126222940)
259
+  (0.1ms) begin transaction
260
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "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), "created_at" datetime, "updated_at" datetime)
261
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
262
+  (0.1ms) SELECT sql
263
+ FROM sqlite_master
264
+ WHERE name='index_users_on_email' AND type='index'
265
+ UNION ALL
266
+ SELECT sql
267
+ FROM sqlite_temp_master
268
+ WHERE name='index_users_on_email' AND type='index'
269
+
270
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
271
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141126222940"]]
272
+  (0.8ms) commit transaction
273
+ Migrating to CreateEffectiveEmailTemplates (20141126222941)
274
+  (0.1ms) begin transaction
275
+  (0.4ms) CREATE TABLE "email_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255), "from" varchar(255), "bcc" varchar(255), "cc" varchar(255), "slug" varchar(255) NOT NULL, "body" text NOT NULL, "template" text NOT NULL) 
276
+  (0.2ms) CREATE INDEX "index_email_templates_on_slug" ON "email_templates" ("slug")
277
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141126222941"]]
278
+  (0.7ms) commit transaction
279
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
280
+  (0.1ms) SELECT sql
281
+ FROM sqlite_master
282
+ WHERE name='index_email_templates_on_slug' AND type='index'
283
+ UNION ALL
284
+ SELECT sql
285
+ FROM sqlite_temp_master
286
+ WHERE name='index_email_templates_on_slug' AND type='index'
287
+
288
+  (0.1ms)  SELECT sql
289
+ FROM sqlite_master
290
+ WHERE name='index_users_on_reset_password_token' AND type='index'
291
+ UNION ALL
292
+ SELECT sql
293
+ FROM sqlite_temp_master
294
+ WHERE name='index_users_on_reset_password_token' AND type='index'
295
+ 
296
+  (0.1ms) SELECT sql
297
+ FROM sqlite_master
298
+ WHERE name='index_users_on_email' AND type='index'
299
+ UNION ALL
300
+ SELECT sql
301
+ FROM sqlite_temp_master
302
+ WHERE name='index_users_on_email' AND type='index'
303
+
304
+
305
+
306
+ Started GET "/" for 127.0.0.1 at 2014-12-10 11:43:41 -0700
307
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
308
+ Processing by WelcomeController#index as HTML
309
+ Rendered welcome/index.html.haml within layouts/application (2.8ms)
310
+ Completed 200 OK in 61ms (Views: 60.3ms | ActiveRecord: 0.0ms)
311
+
312
+
313
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 11:43:41 -0700
314
+
315
+
316
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 11:43:41 -0700
317
+
318
+
319
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 11:43:50 -0700
320
+ Processing by Admin::EmailTemplatesController#index as HTML
321
+ Completed 401 Unauthorized in 7ms
322
+
323
+
324
+ Started GET "/users/sign_in" for 127.0.0.1 at 2014-12-10 11:43:50 -0700
325
+ Processing by Devise::SessionsController#new as HTML
326
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (1.9ms)
327
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/sessions/new.html.erb within layouts/application (21.2ms)
328
+ Completed 200 OK in 58ms (Views: 47.4ms | ActiveRecord: 0.4ms)
329
+
330
+
331
+ Started GET "/users/sign_up" for 127.0.0.1 at 2014-12-10 11:43:59 -0700
332
+ Processing by Devise::RegistrationsController#new as HTML
333
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (0.3ms)
334
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/registrations/new.html.erb within layouts/application (3.8ms)
335
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
336
+
337
+
338
+ Started POST "/users" for 127.0.0.1 at 2014-12-10 11:44:13 -0700
339
+ Processing by Devise::RegistrationsController#create as HTML
340
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Pzt7wXxsZRHsgwFng39tr3tge4BLnXWproBrMvyXyYs=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
341
+  (0.2ms) begin transaction
342
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' LIMIT 1
343
+ Binary data inserted for `string` type on column `encrypted_password`
344
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-12-10 18:44:13.420594"], ["email", "nathan@agilestyle.com"], ["encrypted_password", "$2a$10$Jx/ZVY5L0zUT5qfdp7seJOTMRtGt/6ViYpWgHEr6GN1itFKbv23Ze"], ["updated_at", "2014-12-10 18:44:13.420594"]]
345
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
346
+ CACHE (0.0ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
347
+
348
+ UserLiquidMailer#after_create_user: processed outbound mail in 76.8ms
349
+  (0.5ms) rollback transaction
350
+ Completed 500 Internal Server Error in 176ms
351
+
352
+ ActionView::MissingTemplate (Missing template user_liquid_mailer/after_create_user with "mailer". Searched in:
353
+ * "user_liquid_mailer"
354
+ ):
355
+ app/mailers/user_liquid_mailer.rb:3:in `after_create_user'
356
+ app/models/user.rb:16:in `after_create'
357
+
358
+
359
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.8ms)
360
+
361
+
362
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 11:44:29 -0700
363
+ Processing by Admin::EmailTemplatesController#index as HTML
364
+ Completed 401 Unauthorized in 1ms
365
+
366
+
367
+ Started GET "/users/sign_in" for 127.0.0.1 at 2014-12-10 11:44:29 -0700
368
+ Processing by Devise::SessionsController#new as HTML
369
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (0.3ms)
370
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/sessions/new.html.erb within layouts/application (3.5ms)
371
+ Completed 200 OK in 57ms (Views: 55.6ms | ActiveRecord: 0.0ms)
372
+
373
+
374
+ Started POST "/users/sign_in" for 127.0.0.1 at 2014-12-10 11:44:40 -0700
375
+ Processing by Devise::SessionsController#create as HTML
376
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Pzt7wXxsZRHsgwFng39tr3tge4BLnXWproBrMvyXyYs=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
377
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' ORDER BY "users"."id" ASC LIMIT 1
378
+ Completed 401 Unauthorized in 3ms
379
+ Processing by Devise::SessionsController#new as HTML
380
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Pzt7wXxsZRHsgwFng39tr3tge4BLnXWproBrMvyXyYs=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
381
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (0.3ms)
382
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/sessions/new.html.erb within layouts/application (3.5ms)
383
+ Completed 200 OK in 96ms (Views: 21.9ms | ActiveRecord: 0.0ms)
384
+  (0.1ms) SELECT COUNT(*) FROM "users"
385
+  (0.1ms) begin transaction
386
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' LIMIT 1
387
+ Binary data inserted for `string` type on column `encrypted_password`
388
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-12-10 18:45:41.336601"], ["email", "nathan@agilestyle.com"], ["encrypted_password", "$2a$10$Pdx7Wz0G6m4hfifSYQpsjOD/TMQ256GVr.jRZSE.sG/h3sTJQCWeK"], ["updated_at", "2014-12-10 18:45:41.336601"]]
389
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
390
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
391
+
392
+ UserLiquidMailer#after_create_user: processed outbound mail in 81.0ms
393
+  (8.4ms) rollback transaction
394
+  (0.1ms) begin transaction
395
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' LIMIT 1
396
+ Binary data inserted for `string` type on column `encrypted_password`
397
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-12-10 18:47:04.748953"], ["email", "nathan@agilestyle.com"], ["encrypted_password", "$2a$10$1D0RLHg.cTguTLxfE2c4HeVFNPhsl.devlVqfytGIGK4dBxZ6aIzm"], ["updated_at", "2014-12-10 18:47:04.748953"]]
398
+  (8.3ms) commit transaction
399
+
400
+
401
+ Started POST "/users/sign_in" for 127.0.0.1 at 2014-12-10 11:47:23 -0700
402
+ Processing by Devise::SessionsController#create as HTML
403
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Pzt7wXxsZRHsgwFng39tr3tge4BLnXWproBrMvyXyYs=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
404
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' ORDER BY "users"."id" ASC LIMIT 1
405
+  (0.1ms) begin transaction
406
+ Binary data inserted for `string` type on column `current_sign_in_ip`
407
+ Binary data inserted for `string` type on column `last_sign_in_ip`
408
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-12-10 18:47:23.807317"], ["current_sign_in_ip", "127.0.0.1"], ["last_sign_in_at", "2014-12-10 18:47:23.807317"], ["last_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2014-12-10 18:47:23.808245"]]
409
+  (8.7ms) commit transaction
410
+ Redirected to http://localhost:3001/admin/email_templates
411
+ Completed 302 Found in 105ms (ActiveRecord: 9.8ms)
412
+
413
+
414
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 11:47:23 -0700
415
+ Processing by Admin::EmailTemplatesController#index as HTML
416
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
417
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
418
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (4.1ms)
419
+ Completed 200 OK in 38ms (Views: 27.4ms | ActiveRecord: 0.5ms)
420
+
421
+
422
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2014-12-10 11:47:27 -0700
423
+ Processing by Admin::EmailTemplatesController#new as HTML
424
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
425
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (30.8ms)
426
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (34.0ms)
427
+ Completed 500 Internal Server Error in 50ms
428
+
429
+ ActionView::Template::Error (undefined method `simple_form_for' for #<#<Class:0x00000101032490>:0x00000102d09a78>):
430
+ 1: = simple_form_for email_template, url: email_template_form_url(email_template) do |f|
431
+ 2: = f.input :slug
432
+ 3: = f.input :from
433
+ 4: = f.input :cc
434
+ /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml:1:in `___sers_nathan_gems_effective_email_templates_app_views_admin_email_templates__form_html_haml__1986964860319181980_2171073060'
435
+ actionview (4.1.8) lib/action_view/template.rb:145:in `block in render'
436
+ activesupport (4.1.8) lib/active_support/notifications.rb:161:in `instrument'
437
+ actionview (4.1.8) lib/action_view/template.rb:339:in `instrument'
438
+ actionview (4.1.8) lib/action_view/template.rb:143:in `render'
439
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
440
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
441
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
442
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
443
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
444
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
445
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
446
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:278:in `render'
447
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:47:in `render_partial'
448
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:21:in `render'
449
+ actionview (4.1.8) lib/action_view/helpers/rendering_helper.rb:32:in `render'
450
+ haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
451
+ haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml'
452
+ haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
453
+ /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml:3:in `___sers_nathan_gems_effective_email_templates_app_views_admin_email_templates_new_html_haml__1659651300201941607_2171077060'
454
+ actionview (4.1.8) lib/action_view/template.rb:145:in `block in render'
455
+ activesupport (4.1.8) lib/active_support/notifications.rb:161:in `instrument'
456
+ actionview (4.1.8) lib/action_view/template.rb:339:in `instrument'
457
+ actionview (4.1.8) lib/action_view/template.rb:143:in `render'
458
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
459
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
460
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
461
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
462
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
463
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
464
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
465
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
466
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
467
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:17:in `render'
468
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:42:in `render_template'
469
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:23:in `render'
470
+ actionview (4.1.8) lib/action_view/rendering.rb:99:in `_render_template'
471
+ actionpack (4.1.8) lib/action_controller/metal/streaming.rb:217:in `_render_template'
472
+ actionview (4.1.8) lib/action_view/rendering.rb:82:in `render_to_body'
473
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
474
+ actionpack (4.1.8) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
475
+ actionpack (4.1.8) lib/abstract_controller/rendering.rb:25:in `render'
476
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:16:in `render'
477
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
478
+ activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
479
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
480
+ activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `ms'
481
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
482
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
483
+ activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
484
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:40:in `render'
485
+ actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
486
+ actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
487
+ actionpack (4.1.8) lib/abstract_controller/base.rb:189:in `process_action'
488
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
489
+ actionpack (4.1.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
490
+ activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
491
+ activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
492
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
493
+ activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `call'
494
+ activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `block in halting'
495
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `call'
496
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
497
+ activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
498
+ activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
499
+ actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
500
+ actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
501
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
502
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
503
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
504
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
505
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
506
+ actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
507
+ activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
508
+ actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
509
+ actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
510
+ actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
511
+ actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
512
+ actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
513
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
514
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
515
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
516
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
517
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
518
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
519
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
520
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
521
+ railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
522
+ railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
523
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
524
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
525
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
526
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
527
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
528
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
529
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
530
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
531
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
532
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
533
+ actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
534
+ actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
535
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
536
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
537
+ actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
538
+ activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
539
+ activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
540
+ activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
541
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
542
+ activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
543
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
544
+ actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
545
+ actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
546
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
547
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
548
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
549
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
550
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
551
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
552
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
553
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
554
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
555
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
556
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
557
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
558
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
559
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
560
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
561
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
562
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
563
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
564
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
565
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
566
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
567
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
568
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
569
+
570
+
571
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
572
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
573
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.1ms)
574
+
575
+
576
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2014-12-10 11:57:41 -0700
577
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
578
+ Processing by Admin::EmailTemplatesController#new as HTML
579
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
580
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (21.8ms)
581
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (29.0ms)
582
+ Completed 500 Internal Server Error in 100ms
583
+
584
+ ActionView::Template::Error (undefined method `simple_form_for' for #<#<Class:0x000001023138c0>:0x000001023119a8>):
585
+ 1: = simple_form_for email_template, url: email_template_form_url(email_template) do |f|
586
+ 2: = f.input :slug
587
+ 3: = f.input :from
588
+ 4: = f.input :cc
589
+ /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml:1:in `___sers_nathan_gems_effective_email_templates_app_views_admin_email_templates__form_html_haml__2592957876847378995_2171705840'
590
+ actionview (4.1.8) lib/action_view/template.rb:145:in `block in render'
591
+ activesupport (4.1.8) lib/active_support/notifications.rb:161:in `instrument'
592
+ actionview (4.1.8) lib/action_view/template.rb:339:in `instrument'
593
+ actionview (4.1.8) lib/action_view/template.rb:143:in `render'
594
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
595
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
596
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
597
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
598
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
599
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
600
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
601
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:278:in `render'
602
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:47:in `render_partial'
603
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:21:in `render'
604
+ actionview (4.1.8) lib/action_view/helpers/rendering_helper.rb:32:in `render'
605
+ haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
606
+ haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml'
607
+ haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
608
+ /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml:3:in `___sers_nathan_gems_effective_email_templates_app_views_admin_email_templates_new_html_haml__3103210541676736381_2165656540'
609
+ actionview (4.1.8) lib/action_view/template.rb:145:in `block in render'
610
+ activesupport (4.1.8) lib/active_support/notifications.rb:161:in `instrument'
611
+ actionview (4.1.8) lib/action_view/template.rb:339:in `instrument'
612
+ actionview (4.1.8) lib/action_view/template.rb:143:in `render'
613
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
614
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
615
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
616
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
617
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
618
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
619
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
620
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
621
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
622
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:17:in `render'
623
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:42:in `render_template'
624
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:23:in `render'
625
+ actionview (4.1.8) lib/action_view/rendering.rb:99:in `_render_template'
626
+ actionpack (4.1.8) lib/action_controller/metal/streaming.rb:217:in `_render_template'
627
+ actionview (4.1.8) lib/action_view/rendering.rb:82:in `render_to_body'
628
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
629
+ actionpack (4.1.8) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
630
+ actionpack (4.1.8) lib/abstract_controller/rendering.rb:25:in `render'
631
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:16:in `render'
632
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
633
+ activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
634
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
635
+ activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `ms'
636
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
637
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
638
+ activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
639
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:40:in `render'
640
+ actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
641
+ actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
642
+ actionpack (4.1.8) lib/abstract_controller/base.rb:189:in `process_action'
643
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
644
+ actionpack (4.1.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
645
+ activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
646
+ activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
647
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
648
+ activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `call'
649
+ activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `block in halting'
650
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `call'
651
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
652
+ activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
653
+ activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
654
+ actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
655
+ actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
656
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
657
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
658
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
659
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
660
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
661
+ actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
662
+ activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
663
+ actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
664
+ actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
665
+ actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
666
+ actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
667
+ actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
668
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
669
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
670
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
671
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
672
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
673
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
674
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
675
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
676
+ railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
677
+ railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
678
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
679
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
680
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
681
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
682
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
683
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
684
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
685
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
686
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
687
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
688
+ actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
689
+ actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
690
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
691
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
692
+ actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
693
+ activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
694
+ activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
695
+ activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
696
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
697
+ activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
698
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
699
+ actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
700
+ actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
701
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
702
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
703
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
704
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
705
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
706
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
707
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
708
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
709
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
710
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
711
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
712
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
713
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
714
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
715
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
716
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
717
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
718
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
719
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
720
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
721
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
722
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
723
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
724
+
725
+
726
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
727
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
728
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.9ms)
729
+
730
+
731
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2014-12-10 11:58:06 -0700
732
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
733
+ Processing by Admin::EmailTemplatesController#new as HTML
734
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
735
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (90.5ms)
736
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (101.3ms)
737
+ Completed 200 OK in 204ms (Views: 136.8ms | ActiveRecord: 0.8ms)
738
+
739
+
740
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 11:58:07 -0700
741
+
742
+
743
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 11:58:07 -0700
744
+
745
+
746
+ Started POST "/admin/email_templates" for 127.0.0.1 at 2014-12-10 12:02:44 -0700
747
+ Processing by Admin::EmailTemplatesController#create as HTML
748
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"8A6UKDPN6O1+JE24LLZ/a60kH7Z86bZukApnn9fM3KU=", "effective_email_template"=>{"slug"=>"after_create_user", "from"=>"nathan@agilestyle.com", "cc"=>"", "bcc"=>"", "subject"=>"Welcome Test App User", "body"=>"Dear Test User,\r\n\r\nThis is a test email template. Doesn't that sound exciting?\r\n\r\nStare at ceiling chase ball of string use lap as chair, yet mark territory. Attack feet stick butt in face stretch vommit food and eat it again but spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Give attitude stretch, or find empty spot in cupboard and sleep all day always hungry poop on grasses for sleep on keyboard. Chew foot find empty spot in cupboard and sleep all day eat grass, throw it back up so peer out window, chatter at birds, lure them to mouth but has closed eyes but still sees you. Present belly, scratch hand when stroked. Burrow under covers chase laser. Burrow under covers kick up litter yet destroy couch, yet chew iPad power cord, yet chase imaginary bugs, yet have secret plans but lick arm hair. Intrigued by the shower claw drapes. Stand in front of the computer screen always hungry but stick butt in face, yet shove bum in owner's face like camera lens chase ball of string. Chase laser chase imaginary bugs. Find something else more interesting. Play riveting piece on synthesizer keyboard scamper plan steps for world domination. Destroy couch intently sniff hand sun bathe. Rub face on everything use lap as chair, so destroy couch loves cheeseburgers lick butt. Give attitude chase ball of string. Chew foot meowing non stop for food so bathe private parts with tongue then lick owner's face and leave dead animals as gifts chase laser. Need to chase tail chase mice, so lick butt hide when guests come over. Bathe private parts with tongue then lick owner's face hide when guests come over chew foot. Find something else more interesting stare at the wall, play with food and get confused by dust so sit in box for i like big cats and i can not lie and hunt by meowing loudly at 5am next to human slave food dispenser. Meow all night having their mate disturbing sleeping humans purr for no reason, sit in box inspect anything brought into the house. Throwup on your pillow lick arm hair, intrigued by the shower. Climb leg shake treat bag, but eat grass, throw it back up, but spread kitty litter all over house yet stand in front of the computer screen. Have secret plans. Leave dead animals as gifts claw drapes, but hate dog i like big cats and i can not lie all of a sudden cat goes crazy, yet hunt by meowing loudly at 5am next to human slave food dispenser lick arm hair. \r\n\r\nSpot something, big eyes, big eyes, crouch, shake butt, prepare to pounce under the bed, bathe private parts with tongue then lick owner's face for have secret plans under the bed under the bed chase laser. Kick up litter scratch the furniture. Chew on cable stick butt in face, or scratch the furniture yet stare at ceiling stare at ceiling, for spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Lick butt. See owner, run in terror intently sniff hand, spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce stick butt in face. Intrigued by the shower shake treat bag, or give attitude, or sleep in the bathroom sink for chase ball of string so destroy couch, for present belly, scratch hand when stroked. Under the bed leave fur on owners clothes, and swat at dog, and vommit food and eat it again. Chase dog then run away. Favor packaging over toy present belly, scratch hand when stroked attack feet kick up litter or eat grass, throw it back up leave fur on owners clothes and chase imaginary bugs. Roll on the floor purring your whiskers off hunt anything that moves run in circles, for bathe private parts with tongue then lick owner's face so chase dog then run away spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Stick butt in face meow all night having their mate disturbing sleeping humans eat grass, throw it back up so if it fits, i sits. Love to play with owner's hair tie cat snacks find empty spot in cupboard and sleep all day. Chase dog then run away meowing non stop for food sleep nap roll on the floor purring your whiskers off so purr while eating. Leave dead animals as gifts throwup on your pillow, but chase dog then run away, but hunt anything that moves, so chase imaginary bugs, or chew iPad power cord. Play time i like big cats and i can not lie but spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Bathe private parts with tongue then lick owner's face mark territory poop on grasses, nap all day. Always hungry why must they do that, but hunt by meowing loudly at 5am next to human slave food dispenser. \r\n\r\nIntently stare at the same spot burrow under covers, yet why must they do that. Loves cheeseburgers present belly, scratch hand when stroked hate dog all of a sudden cat goes crazy leave hair everywhere why must they do that, or chase laser. Scamper plan steps for world domination has closed eyes but still sees you. Chew on cable scamper for hunt anything that moves missing until dinner time. Favor packaging over toy chew iPad power cord missing until dinner time, for roll on the floor purring your whiskers off sleep nap hunt anything that moves. Swat at dog claw drapes, meowing non stop for food. Intrigued by the shower chase laser but why must they do that. Kick up litter chase imaginary bugs all of a sudden cat goes crazy purr while eating so purr for no reason flop over. Peer out window, chatter at birds, lure them to mouth roll on the floor purring your whiskers off for claws in your leg, but give attitude. Under the bed stare at ceiling, but all of a sudden cat goes crazy loves cheeseburgers, or has closed eyes but still sees you if it fits, i sits. All of a sudden cat goes crazy climb leg, or purr for no reason hide at bottom of staircase to trip human claws in your leg but hunt by meowing loudly at 5am next to human slave food dispenser meow all night having their mate disturbing sleeping humans. Behind the couch if it fits, i sits play riveting piece on synthesizer keyboard chew foot, for spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce, but sleep in the bathroom sink or vommit food and eat it again. Leave dead animals as gifts hack up furballs kick up litter, for who's the baby, but hack up furballs hide when guests come over. Intrigued by the shower have secret plans. Chase ball of string kick up litter so if it fits, i sits and stare at the wall, play with food and get confused by dust chew iPad power cord. Shake treat bag run in circles, so give attitude plan steps for world domination, and sleep in the bathroom sink. \r\n"}, "commit"=>"Create Email template"}
749
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
750
+  (0.2ms) begin transaction
751
+ Effective::EmailTemplate Exists (0.1ms) SELECT 1 AS one FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
752
+ SQL (0.5ms) INSERT INTO "email_templates" ("bcc", "body", "cc", "from", "slug", "subject", "template") VALUES (?, ?, ?, ?, ?, ?, ?) [["bcc", ""], ["body", "Dear Test User,\r\n\r\nThis is a test email template. Doesn't that sound exciting?\r\n\r\nStare at ceiling chase ball of string use lap as chair, yet mark territory. Attack feet stick butt in face stretch vommit food and eat it again but spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Give attitude stretch, or find empty spot in cupboard and sleep all day always hungry poop on grasses for sleep on keyboard. Chew foot find empty spot in cupboard and sleep all day eat grass, throw it back up so peer out window, chatter at birds, lure them to mouth but has closed eyes but still sees you. Present belly, scratch hand when stroked. Burrow under covers chase laser. Burrow under covers kick up litter yet destroy couch, yet chew iPad power cord, yet chase imaginary bugs, yet have secret plans but lick arm hair. Intrigued by the shower claw drapes. Stand in front of the computer screen always hungry but stick butt in face, yet shove bum in owner's face like camera lens chase ball of string. Chase laser chase imaginary bugs. Find something else more interesting. Play riveting piece on synthesizer keyboard scamper plan steps for world domination. Destroy couch intently sniff hand sun bathe. Rub face on everything use lap as chair, so destroy couch loves cheeseburgers lick butt. Give attitude chase ball of string. Chew foot meowing non stop for food so bathe private parts with tongue then lick owner's face and leave dead animals as gifts chase laser. Need to chase tail chase mice, so lick butt hide when guests come over. Bathe private parts with tongue then lick owner's face hide when guests come over chew foot. Find something else more interesting stare at the wall, play with food and get confused by dust so sit in box for i like big cats and i can not lie and hunt by meowing loudly at 5am next to human slave food dispenser. Meow all night having their mate disturbing sleeping humans purr for no reason, sit in box inspect anything brought into the house. Throwup on your pillow lick arm hair, intrigued by the shower. Climb leg shake treat bag, but eat grass, throw it back up, but spread kitty litter all over house yet stand in front of the computer screen. Have secret plans. Leave dead animals as gifts claw drapes, but hate dog i like big cats and i can not lie all of a sudden cat goes crazy, yet hunt by meowing loudly at 5am next to human slave food dispenser lick arm hair. \r\n\r\nSpot something, big eyes, big eyes, crouch, shake butt, prepare to pounce under the bed, bathe private parts with tongue then lick owner's face for have secret plans under the bed under the bed chase laser. Kick up litter scratch the furniture. Chew on cable stick butt in face, or scratch the furniture yet stare at ceiling stare at ceiling, for spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Lick butt. See owner, run in terror intently sniff hand, spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce stick butt in face. Intrigued by the shower shake treat bag, or give attitude, or sleep in the bathroom sink for chase ball of string so destroy couch, for present belly, scratch hand when stroked. Under the bed leave fur on owners clothes, and swat at dog, and vommit food and eat it again. Chase dog then run away. Favor packaging over toy present belly, scratch hand when stroked attack feet kick up litter or eat grass, throw it back up leave fur on owners clothes and chase imaginary bugs. Roll on the floor purring your whiskers off hunt anything that moves run in circles, for bathe private parts with tongue then lick owner's face so chase dog then run away spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Stick butt in face meow all night having their mate disturbing sleeping humans eat grass, throw it back up so if it fits, i sits. Love to play with owner's hair tie cat snacks find empty spot in cupboard and sleep all day. Chase dog then run away meowing non stop for food sleep nap roll on the floor purring your whiskers off so purr while eating. Leave dead animals as gifts throwup on your pillow, but chase dog then run away, but hunt anything that moves, so chase imaginary bugs, or chew iPad power cord. Play time i like big cats and i can not lie but spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Bathe private parts with tongue then lick owner's face mark territory poop on grasses, nap all day. Always hungry why must they do that, but hunt by meowing loudly at 5am next to human slave food dispenser. \r\n\r\nIntently stare at the same spot burrow under covers, yet why must they do that. Loves cheeseburgers present belly, scratch hand when stroked hate dog all of a sudden cat goes crazy leave hair everywhere why must they do that, or chase laser. Scamper plan steps for world domination has closed eyes but still sees you. Chew on cable scamper for hunt anything that moves missing until dinner time. Favor packaging over toy chew iPad power cord missing until dinner time, for roll on the floor purring your whiskers off sleep nap hunt anything that moves. Swat at dog claw drapes, meowing non stop for food. Intrigued by the shower chase laser but why must they do that. Kick up litter chase imaginary bugs all of a sudden cat goes crazy purr while eating so purr for no reason flop over. Peer out window, chatter at birds, lure them to mouth roll on the floor purring your whiskers off for claws in your leg, but give attitude. Under the bed stare at ceiling, but all of a sudden cat goes crazy loves cheeseburgers, or has closed eyes but still sees you if it fits, i sits. All of a sudden cat goes crazy climb leg, or purr for no reason hide at bottom of staircase to trip human claws in your leg but hunt by meowing loudly at 5am next to human slave food dispenser meow all night having their mate disturbing sleeping humans. Behind the couch if it fits, i sits play riveting piece on synthesizer keyboard chew foot, for spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce, but sleep in the bathroom sink or vommit food and eat it again. Leave dead animals as gifts hack up furballs kick up litter, for who's the baby, but hack up furballs hide when guests come over. Intrigued by the shower have secret plans. Chase ball of string kick up litter so if it fits, i sits and stare at the wall, play with food and get confused by dust chew iPad power cord. Shake treat bag run in circles, so give attitude plan steps for world domination, and sleep in the bathroom sink. \r\n"], ["cc", ""], ["from", "nathan@agilestyle.com"], ["slug", "after_create_user"], ["subject", "Welcome Test App User"], ["template", "--- !ruby/object:Liquid::Template\nresource_limits: {}\noptions: {}\nprofiling: \nline_numbers: \nroot: !ruby/object:Liquid::Document\n tag_name: \n markup: \n options:\n :locale: !ruby/object:Liquid::I18n\n path: \"/Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/liquid-3.0.0/lib/liquid/locales/en.yml\"\n blank: \n nodelist:\n - \"Dear Test User,\\r\\n\\r\\nThis is a test email template. Doesn't that sound exciting?\\r\\n\\r\\nStare\n at ceiling chase ball of string use lap as chair, yet mark territory. Attack feet\n stick butt in face stretch vommit food and eat it again but spot something, big\n eyes, big eyes, crouch, shake butt, prepare to pounce. Give attitude stretch,\n or find empty spot in cupboard and sleep all day always hungry poop on grasses\n for sleep on keyboard. Chew foot find empty spot in cupboard and sleep all day\n eat grass, throw it back up so peer out window, chatter at birds, lure them to\n mouth but has closed eyes but still sees you. Present belly, scratch hand when\n stroked. Burrow under covers chase laser. Burrow under covers kick up litter yet\n destroy couch, yet chew iPad power cord, yet chase imaginary bugs, yet have secret\n plans but lick arm hair. Intrigued by the shower claw drapes. Stand in front of\n the computer screen always hungry but stick butt in face, yet shove bum in owner's\n face like camera lens chase ball of string. Chase laser chase imaginary bugs.\n Find something else more interesting. Play riveting piece on synthesizer keyboard\n scamper plan steps for world domination. Destroy couch intently sniff hand sun\n bathe. Rub face on everything use lap as chair, so destroy couch loves cheeseburgers\n lick butt. Give attitude chase ball of string. Chew foot meowing non stop for\n food so bathe private parts with tongue then lick owner's face and leave dead\n animals as gifts chase laser. Need to chase tail chase mice, so lick butt hide\n when guests come over. Bathe private parts with tongue then lick owner's face\n hide when guests come over chew foot. Find something else more interesting stare\n at the wall, play with food and get confused by dust so sit in box for i like\n big cats and i can not lie and hunt by meowing loudly at 5am next to human slave\n food dispenser. Meow all night having their mate disturbing sleeping humans purr\n for no reason, sit in box inspect anything brought into the house. Throwup on\n your pillow lick arm hair, intrigued by the shower. Climb leg shake treat bag,\n but eat grass, throw it back up, but spread kitty litter all over house yet stand\n in front of the computer screen. Have secret plans. Leave dead animals as gifts\n claw drapes, but hate dog i like big cats and i can not lie all of a sudden cat\n goes crazy, yet hunt by meowing loudly at 5am next to human slave food dispenser\n lick arm hair. \\r\\n\\r\\nSpot something, big eyes, big eyes, crouch, shake butt,\n prepare to pounce under the bed, bathe private parts with tongue then lick owner's\n face for have secret plans under the bed under the bed chase laser. Kick up litter\n scratch the furniture. Chew on cable stick butt in face, or scratch the furniture\n yet stare at ceiling stare at ceiling, for spot something, big eyes, big eyes,\n crouch, shake butt, prepare to pounce. Lick butt. See owner, run in terror intently\n sniff hand, spot something, big eyes, big eyes, crouch, shake butt, prepare to\n pounce stick butt in face. Intrigued by the shower shake treat bag, or give attitude,\n or sleep in the bathroom sink for chase ball of string so destroy couch, for present\n belly, scratch hand when stroked. Under the bed leave fur on owners clothes, and\n swat at dog, and vommit food and eat it again. Chase dog then run away. Favor\n packaging over toy present belly, scratch hand when stroked attack feet kick up\n litter or eat grass, throw it back up leave fur on owners clothes and chase imaginary\n bugs. Roll on the floor purring your whiskers off hunt anything that moves run\n in circles, for bathe private parts with tongue then lick owner's face so chase\n dog then run away spot something, big eyes, big eyes, crouch, shake butt, prepare\n to pounce. Stick butt in face meow all night having their mate disturbing sleeping\n humans eat grass, throw it back up so if it fits, i sits. Love to play with owner's\n hair tie cat snacks find empty spot in cupboard and sleep all day. Chase dog then\n run away meowing non stop for food sleep nap roll on the floor purring your whiskers\n off so purr while eating. Leave dead animals as gifts throwup on your pillow,\n but chase dog then run away, but hunt anything that moves, so chase imaginary\n bugs, or chew iPad power cord. Play time i like big cats and i can not lie but\n spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce. Bathe\n private parts with tongue then lick owner's face mark territory poop on grasses,\n nap all day. Always hungry why must they do that, but hunt by meowing loudly at\n 5am next to human slave food dispenser. \\r\\n\\r\\nIntently stare at the same spot\n burrow under covers, yet why must they do that. Loves cheeseburgers present belly,\n scratch hand when stroked hate dog all of a sudden cat goes crazy leave hair everywhere\n why must they do that, or chase laser. Scamper plan steps for world domination\n has closed eyes but still sees you. Chew on cable scamper for hunt anything that\n moves missing until dinner time. Favor packaging over toy chew iPad power cord\n missing until dinner time, for roll on the floor purring your whiskers off sleep\n nap hunt anything that moves. Swat at dog claw drapes, meowing non stop for food.\n Intrigued by the shower chase laser but why must they do that. Kick up litter\n chase imaginary bugs all of a sudden cat goes crazy purr while eating so purr\n for no reason flop over. Peer out window, chatter at birds, lure them to mouth\n roll on the floor purring your whiskers off for claws in your leg, but give attitude.\n Under the bed stare at ceiling, but all of a sudden cat goes crazy loves cheeseburgers,\n or has closed eyes but still sees you if it fits, i sits. All of a sudden cat\n goes crazy climb leg, or purr for no reason hide at bottom of staircase to trip\n human claws in your leg but hunt by meowing loudly at 5am next to human slave\n food dispenser meow all night having their mate disturbing sleeping humans. Behind\n the couch if it fits, i sits play riveting piece on synthesizer keyboard chew\n foot, for spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce,\n but sleep in the bathroom sink or vommit food and eat it again. Leave dead animals\n as gifts hack up furballs kick up litter, for who's the baby, but hack up furballs\n hide when guests come over. Intrigued by the shower have secret plans. Chase ball\n of string kick up litter so if it fits, i sits and stare at the wall, play with\n food and get confused by dust chew iPad power cord. Shake treat bag run in circles,\n so give attitude plan steps for world domination, and sleep in the bathroom sink.\n \\r\\n\"\nwarnings: \n"]]
753
+  (0.8ms) commit transaction
754
+ Redirected to http://localhost:3001/admin/email_templates
755
+ Completed 302 Found in 22ms (ActiveRecord: 1.8ms)
756
+
757
+
758
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 12:02:44 -0700
759
+ Processing by Admin::EmailTemplatesController#index as HTML
760
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
761
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates"
762
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (129.0ms)
763
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (131.8ms)
764
+ Completed 200 OK in 152ms (Views: 146.0ms | ActiveRecord: 0.3ms)
765
+
766
+
767
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 12:02:44 -0700
768
+
769
+
770
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 12:02:44 -0700
771
+
772
+
773
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 12:03:38 -0700
774
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
775
+ Processing by Admin::EmailTemplatesController#index as HTML
776
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
777
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates"
778
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (109.2ms)
779
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (121.1ms)
780
+ Completed 200 OK in 223ms (Views: 144.3ms | ActiveRecord: 0.9ms)
781
+
782
+
783
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 12:03:38 -0700
784
+
785
+
786
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 12:03:38 -0700
787
+  (0.1ms) SELECT COUNT(*) FROM "email_templates"
788
+
789
+
790
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 12:07:04 -0700
791
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
792
+ Processing by Admin::EmailTemplatesController#index as HTML
793
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
794
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
795
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (100.9ms)
796
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (114.3ms)
797
+ Completed 200 OK in 208ms (Views: 138.2ms | ActiveRecord: 0.9ms)
798
+
799
+
800
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 12:07:04 -0700
801
+
802
+
803
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 12:07:04 -0700
804
+
805
+
806
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 12:07:19 -0700
807
+
808
+
809
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-10 12:08:11 -0700
810
+ Processing by Admin::EmailTemplatesController#index as HTML
811
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
812
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
813
+  (0.2ms) SELECT COUNT(*) FROM "email_templates"
814
+ CACHE (0.0ms) SELECT "email_templates".* FROM "email_templates"
815
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (45403.9ms)
816
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (53482.5ms)
817
+ Completed 200 OK in 74822ms (Views: 53495.3ms | ActiveRecord: 1.3ms)
818
+
819
+
820
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 12:09:26 -0700
821
+
822
+
823
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 12:09:26 -0700
824
+
825
+
826
+ Started GET "/admin/email_templates/1" for 127.0.0.1 at 2014-12-10 12:11:03 -0700
827
+ Processing by Admin::EmailTemplatesController#show as HTML
828
+ Parameters: {"id"=>"1"}
829
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
830
+ Effective::EmailTemplate Load (0.5ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."id" = ? LIMIT 1 [["id", 1]]
831
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/show.html.haml within layouts/application (7.1ms)
832
+ Completed 200 OK in 26ms (Views: 22.0ms | ActiveRecord: 0.7ms)
833
+
834
+
835
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-10 12:11:03 -0700
836
+
837
+
838
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-10 12:11:03 -0700
839
+ SQL (4.5ms) DELETE FROM "email_templates"
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:24:59 -0700
843
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
844
+ Processing by WelcomeController#index as HTML
845
+ Rendered welcome/index.html.haml within layouts/application (2.1ms)
846
+ Completed 200 OK in 39ms (Views: 38.2ms | ActiveRecord: 0.0ms)
847
+
848
+
849
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:24:59 -0700
850
+
851
+
852
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:24:59 -0700
853
+
854
+
855
+ Started GET "/users/sign_up" for 127.0.0.1 at 2014-12-11 09:25:04 -0700
856
+ Processing by Devise::RegistrationsController#new as HTML
857
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
858
+ Redirected to http://localhost:3001/
859
+ Filter chain halted as :require_no_authentication rendered or redirected
860
+ Completed 302 Found in 22ms (ActiveRecord: 0.7ms)
861
+
862
+
863
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:25:04 -0700
864
+ Processing by WelcomeController#index as HTML
865
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
866
+ Completed 200 OK in 15ms (Views: 15.1ms | ActiveRecord: 0.0ms)
867
+
868
+
869
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:25:04 -0700
870
+
871
+
872
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:25:04 -0700
873
+
874
+
875
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:25:14 -0700
876
+
877
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
878
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
879
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
880
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
881
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
882
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
883
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
884
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
885
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
886
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
887
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
888
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
889
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
890
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
891
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
892
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
893
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
894
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
895
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
896
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
897
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
898
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
899
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
900
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
901
+
902
+
903
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
904
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms)
905
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
906
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
907
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms)
908
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.6ms)
909
+
910
+
911
+ Started GET "/users/" for 127.0.0.1 at 2014-12-11 09:25:19 -0700
912
+
913
+ ActionController::RoutingError (No route matches [GET] "/users"):
914
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
915
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
916
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
917
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
918
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
919
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
920
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
921
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
922
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
923
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
924
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
925
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
926
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
927
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
928
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
929
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
930
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
931
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
932
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
933
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
934
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
935
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
936
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
937
+
938
+
939
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
940
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
941
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
942
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
943
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
944
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.7ms)
945
+
946
+
947
+ Started GET "/users/sign_in" for 127.0.0.1 at 2014-12-11 09:25:23 -0700
948
+ Processing by Devise::SessionsController#new as HTML
949
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
950
+ Redirected to http://localhost:3001/
951
+ Filter chain halted as :require_no_authentication rendered or redirected
952
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
953
+
954
+
955
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:25:23 -0700
956
+ Processing by WelcomeController#index as HTML
957
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
958
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
959
+
960
+
961
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:25:23 -0700
962
+
963
+
964
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:25:23 -0700
965
+
966
+
967
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:26:56 -0700
968
+ Processing by WelcomeController#index as HTML
969
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
970
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
971
+ Completed 500 Internal Server Error in 28ms
972
+
973
+ ActionView::Template::Error (undefined local variable or method `sign_out_path' for #<#<Class:0x000001015facb0>:0x0000010136c7f0>):
974
+ 12: <p class="alert"><%= alert %></p>
975
+ 13:
976
+ 14: <% if signed_in? %>
977
+ 15: <%= link_to "Sign Out", sign_out_path %>
978
+ 16: <% else %>
979
+ 17: <%= link_to "Sign In", sign_in_path %>
980
+ 18: <% end %>
981
+ app/views/layouts/application.html.erb:15:in `_app_views_layouts_application_html_erb__4205708449238577676_2166036340'
982
+
983
+
984
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
985
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
986
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.2ms)
987
+
988
+
989
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:28:09 -0700
990
+ Processing by WelcomeController#index as HTML
991
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
992
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
993
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.3ms)
994
+
995
+
996
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:28:09 -0700
997
+
998
+
999
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:28:09 -0700
1000
+
1001
+
1002
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:28:11 -0700
1003
+
1004
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1005
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1006
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1007
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1008
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1009
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1010
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1011
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1012
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1013
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1014
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1015
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1016
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1017
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1018
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1019
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1020
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1021
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1022
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1023
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1024
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1025
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1026
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1027
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1028
+
1029
+
1030
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1031
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms)
1032
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
1033
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
1034
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
1035
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (40.2ms)
1036
+
1037
+
1038
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:28:37 -0700
1039
+
1040
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1041
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1042
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1043
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1044
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1045
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1046
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1047
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1048
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1049
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1050
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1051
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1052
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1053
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1054
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1055
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1056
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1057
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1058
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1059
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1060
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1061
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1062
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1063
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1064
+
1065
+
1066
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1067
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
1068
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1069
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1070
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
1071
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.7ms)
1072
+
1073
+
1074
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:28:40 -0700
1075
+ Processing by WelcomeController#index as HTML
1076
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
1077
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1078
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.2ms)
1079
+
1080
+
1081
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:28:40 -0700
1082
+
1083
+
1084
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:28:40 -0700
1085
+
1086
+
1087
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:28:42 -0700
1088
+
1089
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1090
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1091
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1092
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1093
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1094
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1095
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1096
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1097
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1098
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1099
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1100
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1101
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1102
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1103
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1104
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1105
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1106
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1107
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1108
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1109
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1110
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1111
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1112
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1113
+
1114
+
1115
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1116
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
1117
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1118
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
1119
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1120
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (32.7ms)
1121
+
1122
+
1123
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:28:45 -0700
1124
+ Processing by WelcomeController#index as HTML
1125
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1126
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1127
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.2ms)
1128
+
1129
+
1130
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:28:45 -0700
1131
+
1132
+
1133
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:28:45 -0700
1134
+
1135
+
1136
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:28:46 -0700
1137
+
1138
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1139
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1140
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1141
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1142
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1143
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1144
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1145
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1146
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1147
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1148
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1149
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1150
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1151
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1152
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1153
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1154
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1155
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1156
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1157
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1158
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1159
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1160
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1161
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1162
+
1163
+
1164
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1165
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
1166
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
1167
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1168
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1169
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.0ms)
1170
+
1171
+
1172
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:30:55 -0700
1173
+ Processing by WelcomeController#index as HTML
1174
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1175
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1176
+ Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.2ms)
1177
+
1178
+
1179
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:30:55 -0700
1180
+
1181
+
1182
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:30:55 -0700
1183
+
1184
+
1185
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:30:59 -0700
1186
+
1187
+
1188
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:31:06 -0700
1189
+
1190
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1191
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1192
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1193
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1194
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1195
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1196
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1197
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1198
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1199
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1200
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1201
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1202
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1203
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1204
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1205
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1206
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1207
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1208
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1209
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1210
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1211
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1212
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1213
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1214
+
1215
+
1216
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1217
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
1218
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
1219
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1220
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1221
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.1ms)
1222
+
1223
+
1224
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:33:43 -0700
1225
+ Processing by WelcomeController#index as HTML
1226
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1227
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1228
+ Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.2ms)
1229
+
1230
+
1231
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:33:43 -0700
1232
+
1233
+
1234
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:33:43 -0700
1235
+
1236
+
1237
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:33:44 -0700
1238
+ Processing by WelcomeController#index as HTML
1239
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
1240
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1241
+ Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.2ms)
1242
+
1243
+
1244
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:33:44 -0700
1245
+
1246
+
1247
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:33:44 -0700
1248
+
1249
+
1250
+ Started GET "/users/sign_out.1" for 127.0.0.1 at 2014-12-11 09:33:46 -0700
1251
+
1252
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out.1"):
1253
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1254
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1255
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1256
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1257
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1258
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1259
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1260
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1261
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1262
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1263
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1264
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1265
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1266
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1267
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1268
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1269
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1270
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1271
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1272
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1273
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1274
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1275
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1276
+
1277
+
1278
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1279
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
1280
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1281
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1282
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1283
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (29.9ms)
1284
+
1285
+
1286
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:34:12 -0700
1287
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1288
+ Processing by WelcomeController#index as HTML
1289
+ Rendered welcome/index.html.haml within layouts/application (1.6ms)
1290
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1291
+ Completed 200 OK in 45ms (Views: 44.2ms | ActiveRecord: 0.5ms)
1292
+
1293
+
1294
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:34:12 -0700
1295
+
1296
+
1297
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:34:12 -0700
1298
+
1299
+
1300
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:34:14 -0700
1301
+
1302
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1303
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1304
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1305
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1306
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1307
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1308
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1309
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1310
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1311
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1312
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1313
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1314
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1315
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1316
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1317
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1318
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1319
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1320
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1321
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1322
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1323
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1324
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1325
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1326
+
1327
+
1328
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1329
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
1330
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1331
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1332
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
1333
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (39.2ms)
1334
+
1335
+
1336
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:36:07 -0700
1337
+ Processing by WelcomeController#index as HTML
1338
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1339
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1340
+ Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.2ms)
1341
+
1342
+
1343
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:36:07 -0700
1344
+
1345
+
1346
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:36:07 -0700
1347
+
1348
+
1349
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:36:26 -0700
1350
+ Processing by WelcomeController#index as HTML
1351
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1352
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1353
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms)
1354
+
1355
+
1356
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:36:26 -0700
1357
+
1358
+
1359
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:36:26 -0700
1360
+
1361
+
1362
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:36:27 -0700
1363
+ Processing by WelcomeController#index as HTML
1364
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1365
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1366
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms)
1367
+
1368
+
1369
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:36:27 -0700
1370
+
1371
+
1372
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:36:27 -0700
1373
+
1374
+
1375
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:36:30 -0700
1376
+ Processing by WelcomeController#index as HTML
1377
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1378
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1379
+ Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.2ms)
1380
+
1381
+
1382
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:36:31 -0700
1383
+
1384
+
1385
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:36:31 -0700
1386
+
1387
+
1388
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:36:32 -0700
1389
+ Processing by WelcomeController#index as HTML
1390
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1391
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1392
+ Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.2ms)
1393
+
1394
+
1395
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:36:32 -0700
1396
+
1397
+
1398
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:36:32 -0700
1399
+
1400
+
1401
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:36:50 -0700
1402
+ Processing by WelcomeController#index as HTML
1403
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1404
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1405
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.2ms)
1406
+
1407
+
1408
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:36:50 -0700
1409
+
1410
+
1411
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:36:50 -0700
1412
+
1413
+
1414
+ Started GET "/foo" for 127.0.0.1 at 2014-12-11 09:36:51 -0700
1415
+
1416
+ ActionController::RoutingError (No route matches [GET] "/foo"):
1417
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1418
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1419
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1420
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1421
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1422
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1423
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1424
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1425
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1426
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1427
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1428
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1429
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1430
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1431
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1432
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1433
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1434
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1435
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1436
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1437
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1438
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1439
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1440
+
1441
+
1442
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1443
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
1444
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1445
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1446
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1447
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (31.6ms)
1448
+
1449
+
1450
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:36:57 -0700
1451
+
1452
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1453
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1454
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1455
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1456
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1457
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1458
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1459
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1460
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1461
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1462
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1463
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1464
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1465
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1466
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1467
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1468
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1469
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1470
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1471
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1472
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1473
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1474
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1475
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1476
+
1477
+
1478
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1479
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
1480
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1481
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1482
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1483
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (32.4ms)
1484
+
1485
+
1486
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:38:32 -0700
1487
+ Processing by WelcomeController#index as HTML
1488
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1489
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1490
+ Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.2ms)
1491
+
1492
+
1493
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:38:32 -0700
1494
+
1495
+
1496
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:38:32 -0700
1497
+
1498
+
1499
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:38:34 -0700
1500
+
1501
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1502
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1503
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1504
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1505
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1506
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1507
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1508
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1509
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1510
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1511
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1512
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1513
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1514
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1515
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1516
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1517
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1518
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1519
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1520
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1521
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1522
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1523
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1524
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1525
+
1526
+
1527
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1528
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms)
1529
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1530
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1531
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
1532
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (34.8ms)
1533
+
1534
+
1535
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:39:03 -0700
1536
+
1537
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1538
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1539
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1540
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1541
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1542
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1543
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1544
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1545
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1546
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1547
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1548
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1549
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1550
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1551
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1552
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1553
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1554
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1555
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1556
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1557
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1558
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1559
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1560
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1561
+
1562
+
1563
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1564
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
1565
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1566
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1567
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1568
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (28.2ms)
1569
+
1570
+
1571
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:39:05 -0700
1572
+ Processing by WelcomeController#index as HTML
1573
+ Rendered welcome/index.html.haml within layouts/application (0.1ms)
1574
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1575
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms)
1576
+
1577
+
1578
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:39:05 -0700
1579
+
1580
+
1581
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:39:05 -0700
1582
+
1583
+
1584
+ Started GET "/users/sign_out" for 127.0.0.1 at 2014-12-11 09:45:46 -0700
1585
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1586
+
1587
+ ActionController::RoutingError (No route matches [GET] "/users/sign_out"):
1588
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1589
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1590
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1591
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1592
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1593
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1594
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1595
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1596
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1597
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1598
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1599
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1600
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1601
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1602
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1603
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1604
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1605
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1606
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1607
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1608
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1609
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1610
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1611
+
1612
+
1613
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1614
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1615
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1616
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1617
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
1618
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (33.7ms)
1619
+
1620
+
1621
+ Started GET "/" for 127.0.0.1 at 2014-12-11 09:47:19 -0700
1622
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1623
+ Processing by WelcomeController#index as HTML
1624
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
1625
+ Completed 200 OK in 51ms (Views: 50.2ms | ActiveRecord: 0.0ms)
1626
+
1627
+
1628
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:47:19 -0700
1629
+
1630
+
1631
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:47:19 -0700
1632
+
1633
+
1634
+ Started GET "/users/sign_in" for 127.0.0.1 at 2014-12-11 09:47:21 -0700
1635
+ Processing by Devise::SessionsController#new as HTML
1636
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (2.0ms)
1637
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/sessions/new.html.erb within layouts/application (27.9ms)
1638
+ Completed 200 OK in 65ms (Views: 46.2ms | ActiveRecord: 0.7ms)
1639
+
1640
+
1641
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:47:21 -0700
1642
+
1643
+
1644
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:47:21 -0700
1645
+
1646
+
1647
+ Started GET "/users/sign_up" for 127.0.0.1 at 2014-12-11 09:47:24 -0700
1648
+ Processing by Devise::RegistrationsController#new as HTML
1649
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (0.4ms)
1650
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/registrations/new.html.erb within layouts/application (5.0ms)
1651
+ Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.0ms)
1652
+
1653
+
1654
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:47:24 -0700
1655
+
1656
+
1657
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:47:24 -0700
1658
+
1659
+
1660
+ Started POST "/users" for 127.0.0.1 at 2014-12-11 09:47:45 -0700
1661
+ Processing by Devise::RegistrationsController#create as HTML
1662
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zpNQnpFv2IBusVEZciKf/beVgKytClDqsRSBAeSb2oM=", "user"=>{"email"=>"nathan.feaver@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
1663
+  (0.1ms) begin transaction
1664
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathan.feaver@gmail.com' LIMIT 1
1665
+ Binary data inserted for `string` type on column `encrypted_password`
1666
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-12-11 16:47:45.284823"], ["email", "nathan.feaver@gmail.com"], ["encrypted_password", "$2a$10$UIGVUyh/r6jeFJJ8aR0nc.htNXqL53lGmuQNzVjrACW.pN2AoI1l2"], ["updated_at", "2014-12-11 16:47:45.284823"]]
1667
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
1668
+
1669
+ UserLiquidMailer#after_create_user: processed outbound mail in 53.6ms
1670
+  (0.5ms) rollback transaction
1671
+ Completed 500 Internal Server Error in 152ms
1672
+
1673
+ NoMethodError (undefined method `mail_options' for nil:NilClass):
1674
+ app/mailers/user_liquid_mailer.rb:3:in `after_create_user'
1675
+ app/models/user.rb:12:in `after_create'
1676
+
1677
+
1678
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1679
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1680
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
1681
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms)
1682
+
1683
+
1684
+ Started POST "/users" for 127.0.0.1 at 2014-12-11 09:54:06 -0700
1685
+ Processing by Devise::RegistrationsController#create as HTML
1686
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zpNQnpFv2IBusVEZciKf/beVgKytClDqsRSBAeSb2oM=", "user"=>{"email"=>"nathan.feaver@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
1687
+  (0.1ms) begin transaction
1688
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathan.feaver@gmail.com' LIMIT 1
1689
+ Binary data inserted for `string` type on column `encrypted_password`
1690
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-12-11 16:54:06.268088"], ["email", "nathan.feaver@gmail.com"], ["encrypted_password", "$2a$10$t16qhvIP.eaWdxK900wa/u7z7LhaqnsHIJ0IDUHAmQSSSMHQy96JO"], ["updated_at", "2014-12-11 16:54:06.268088"]]
1691
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
1692
+
1693
+ UserLiquidMailer#after_create_user: processed outbound mail in 1.0ms
1694
+  (0.4ms) rollback transaction
1695
+ Completed 500 Internal Server Error in 85ms
1696
+
1697
+ NoMethodError (undefined method `mail_options' for nil:NilClass):
1698
+ app/mailers/user_liquid_mailer.rb:3:in `after_create_user'
1699
+ app/models/user.rb:12:in `after_create'
1700
+
1701
+
1702
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
1703
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1704
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1705
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.4ms)
1706
+
1707
+
1708
+ Started GET "/users/sign_up" for 127.0.0.1 at 2014-12-11 09:54:39 -0700
1709
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1710
+ Processing by Devise::RegistrationsController#new as HTML
1711
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (1.2ms)
1712
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/registrations/new.html.erb within layouts/application (24.5ms)
1713
+ Completed 200 OK in 66ms (Views: 51.8ms | ActiveRecord: 0.3ms)
1714
+
1715
+
1716
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-11 09:54:39 -0700
1717
+
1718
+
1719
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-11 09:54:39 -0700
1720
+
1721
+
1722
+ Started POST "/users" for 127.0.0.1 at 2014-12-11 09:54:48 -0700
1723
+ Processing by Devise::RegistrationsController#create as HTML
1724
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zpNQnpFv2IBusVEZciKf/beVgKytClDqsRSBAeSb2oM=", "user"=>{"email"=>"nathan.feaver@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
1725
+  (0.1ms) begin transaction
1726
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathan.feaver@gmail.com' LIMIT 1
1727
+ Binary data inserted for `string` type on column `encrypted_password`
1728
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-12-11 16:54:48.117516"], ["email", "nathan.feaver@gmail.com"], ["encrypted_password", "$2a$10$4XecdtwFqUMF2MSTCyqM/eCfmeL.YGURywlUA7gvOv9Xq4X7zoOui"], ["updated_at", "2014-12-11 16:54:48.117516"]]
1729
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
1730
+ CACHE (0.0ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
1731
+
1732
+ UserLiquidMailer#after_create_user: processed outbound mail in 60.5ms
1733
+  (8.4ms) rollback transaction
1734
+ Completed 500 Internal Server Error in 157ms
1735
+
1736
+ ActionView::MissingTemplate (Missing template user_liquid_mailer/after_create_user with "mailer". Searched in:
1737
+ * "user_liquid_mailer"
1738
+ ):
1739
+ app/mailers/user_liquid_mailer.rb:3:in `after_create_user'
1740
+ app/models/user.rb:12:in `after_create'
1741
+
1742
+
1743
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.5ms)
1744
+
1745
+
1746
+ Started GET "/" for 127.0.0.1 at 2014-12-12 10:23:13 -0700
1747
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1748
+ Processing by WelcomeController#index as HTML
1749
+ Rendered welcome/index.html.haml within layouts/application (2.4ms)
1750
+ Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.0ms)
1751
+
1752
+
1753
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:23:13 -0700
1754
+
1755
+
1756
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:23:13 -0700
1757
+
1758
+
1759
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:23:18 -0700
1760
+ Processing by Admin::EmailTemplatesController#index as HTML
1761
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1762
+ Effective::EmailTemplate Load (7.7ms) SELECT "email_templates".* FROM "email_templates"
1763
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (1976.7ms)
1764
+ Completed 200 OK in 11990ms (Views: 1993.6ms | ActiveRecord: 8.6ms)
1765
+
1766
+
1767
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2014-12-12 10:23:37 -0700
1768
+ Processing by Admin::EmailTemplatesController#new as HTML
1769
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1770
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (30.0ms)
1771
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (45.5ms)
1772
+ Completed 500 Internal Server Error in 51ms
1773
+
1774
+ ActionView::Template::Error (undefined method `simple_form_for' for #<#<Class:0x00000101fa1930>:0x00000101beb318>):
1775
+ 1: = simple_form_for email_template, url: email_template_form_url(email_template) do |f|
1776
+ 2: = f.input :slug
1777
+ 3: = f.input :from
1778
+ 4: = f.input :cc
1779
+ /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml:1:in `___sers_nathan_gems_effective_email_templates_app_views_admin_email_templates__form_html_haml___1952182512128482133_2162000400'
1780
+ actionview (4.1.8) lib/action_view/template.rb:145:in `block in render'
1781
+ activesupport (4.1.8) lib/active_support/notifications.rb:161:in `instrument'
1782
+ actionview (4.1.8) lib/action_view/template.rb:339:in `instrument'
1783
+ actionview (4.1.8) lib/action_view/template.rb:143:in `render'
1784
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
1785
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
1786
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1787
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
1788
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1789
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
1790
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1791
+ actionview (4.1.8) lib/action_view/renderer/partial_renderer.rb:278:in `render'
1792
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1793
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:21:in `render'
1794
+ actionview (4.1.8) lib/action_view/helpers/rendering_helper.rb:32:in `render'
1795
+ haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
1796
+ haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml'
1797
+ haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
1798
+ /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml:3:in `___sers_nathan_gems_effective_email_templates_app_views_admin_email_templates_new_html_haml__2469363432609580077_2162082580'
1799
+ actionview (4.1.8) lib/action_view/template.rb:145:in `block in render'
1800
+ activesupport (4.1.8) lib/active_support/notifications.rb:161:in `instrument'
1801
+ actionview (4.1.8) lib/action_view/template.rb:339:in `instrument'
1802
+ actionview (4.1.8) lib/action_view/template.rb:143:in `render'
1803
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
1804
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1805
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
1806
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1807
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
1808
+ actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1809
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
1810
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
1811
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
1812
+ actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:17:in `render'
1813
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:42:in `render_template'
1814
+ actionview (4.1.8) lib/action_view/renderer/renderer.rb:23:in `render'
1815
+ actionview (4.1.8) lib/action_view/rendering.rb:99:in `_render_template'
1816
+ actionpack (4.1.8) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1817
+ actionview (4.1.8) lib/action_view/rendering.rb:82:in `render_to_body'
1818
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1819
+ actionpack (4.1.8) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
1820
+ actionpack (4.1.8) lib/abstract_controller/rendering.rb:25:in `render'
1821
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:16:in `render'
1822
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1823
+ activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1824
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1825
+ activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1826
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1827
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1828
+ activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1829
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:40:in `render'
1830
+ actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1831
+ actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1832
+ actionpack (4.1.8) lib/abstract_controller/base.rb:189:in `process_action'
1833
+ actionpack (4.1.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
1834
+ actionpack (4.1.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1835
+ activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
1836
+ activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
1837
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
1838
+ activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `call'
1839
+ activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `block in halting'
1840
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `call'
1841
+ activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
1842
+ activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
1843
+ activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
1844
+ actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
1845
+ actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
1846
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1847
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
1848
+ activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1849
+ activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
1850
+ actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1851
+ actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1852
+ activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1853
+ actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
1854
+ actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
1855
+ actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
1856
+ actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1857
+ actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
1858
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
1859
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1860
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
1861
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
1862
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
1863
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
1864
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
1865
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1866
+ railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
1867
+ railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
1868
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
1869
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
1870
+ actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
1871
+ actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
1872
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1873
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1874
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1875
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1876
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1877
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1878
+ actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1879
+ actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
1880
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1881
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1882
+ actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1883
+ activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
1884
+ activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1885
+ activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
1886
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1887
+ activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
1888
+ actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1889
+ actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1890
+ actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1891
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1892
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1893
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
1894
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
1895
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1896
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
1897
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
1898
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
1899
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1900
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1901
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1902
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1903
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1904
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
1905
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1906
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
1907
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
1908
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1909
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1910
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1911
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1912
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1913
+ /Users/nathan/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1914
+
1915
+
1916
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
1917
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
1918
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.6ms)
1919
+
1920
+
1921
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2014-12-12 10:24:19 -0700
1922
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1923
+ Processing by Admin::EmailTemplatesController#new as HTML
1924
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1925
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (108.4ms)
1926
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (114.4ms)
1927
+ Completed 200 OK in 207ms (Views: 136.1ms | ActiveRecord: 0.7ms)
1928
+
1929
+
1930
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:24:20 -0700
1931
+
1932
+
1933
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:24:20 -0700
1934
+
1935
+
1936
+ Started POST "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:26:09 -0700
1937
+ Processing by Admin::EmailTemplatesController#create as HTML
1938
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"8A6UKDPN6O1+JE24LLZ/a60kH7Z86bZukApnn9fM3KU=", "effective_email_template"=>{"slug"=>"after_create_user", "from"=>"nathan@agilestyle.com", "cc"=>"", "bcc"=>"", "subject"=>"Hello World", "body"=>"This is an email to a new user."}, "commit"=>"Create Email template"}
1939
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1940
+  (0.1ms) begin transaction
1941
+ Effective::EmailTemplate Exists (0.4ms) SELECT 1 AS one FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user' LIMIT 1
1942
+ SQL (0.6ms) INSERT INTO "email_templates" ("bcc", "body", "cc", "from", "slug", "subject", "template") VALUES (?, ?, ?, ?, ?, ?, ?) [["bcc", ""], ["body", "This is an email to a new user."], ["cc", ""], ["from", "nathan@agilestyle.com"], ["slug", "after_create_user"], ["subject", "Hello World"], ["template", "--- !ruby/object:Liquid::Template\nresource_limits: {}\noptions: {}\nprofiling: \nline_numbers: \nroot: !ruby/object:Liquid::Document\n tag_name: \n markup: \n options:\n :locale: !ruby/object:Liquid::I18n\n path: \"/Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/liquid-3.0.0/lib/liquid/locales/en.yml\"\n blank: \n nodelist:\n - This is an email to a new user.\nwarnings: \n"]]
1943
+  (0.8ms) commit transaction
1944
+ Redirected to http://localhost:3001/admin/email_templates
1945
+ Completed 302 Found in 16ms (ActiveRecord: 2.0ms)
1946
+
1947
+
1948
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:26:09 -0700
1949
+ Processing by Admin::EmailTemplatesController#index as HTML
1950
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1951
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
1952
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (9372.8ms)
1953
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (10762.7ms)
1954
+ Completed 200 OK in 19964ms (Views: 10789.3ms | ActiveRecord: 0.4ms)
1955
+
1956
+
1957
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:26:29 -0700
1958
+
1959
+
1960
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:26:29 -0700
1961
+
1962
+
1963
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:27:07 -0700
1964
+ Processing by Admin::EmailTemplatesController#index as HTML
1965
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1966
+ Effective::EmailTemplate Load (0.1ms) SELECT "email_templates".* FROM "email_templates"
1967
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.8ms)
1968
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (630.7ms)
1969
+ Completed 200 OK in 3860ms (Views: 650.0ms | ActiveRecord: 0.3ms)
1970
+
1971
+
1972
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:27:11 -0700
1973
+
1974
+
1975
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:27:11 -0700
1976
+
1977
+
1978
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:28:11 -0700
1979
+ Processing by Admin::EmailTemplatesController#index as HTML
1980
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1981
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
1982
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.6ms)
1983
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (1068.8ms)
1984
+ Completed 200 OK in 4029ms (Views: 1082.7ms | ActiveRecord: 0.4ms)
1985
+
1986
+
1987
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:28:15 -0700
1988
+
1989
+
1990
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:28:15 -0700
1991
+
1992
+
1993
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2014-12-12 10:28:48 -0700
1994
+ Processing by Admin::EmailTemplatesController#new as HTML
1995
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1996
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (15.5ms)
1997
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (17.9ms)
1998
+ Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.2ms)
1999
+
2000
+
2001
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:28:48 -0700
2002
+
2003
+
2004
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:28:48 -0700
2005
+
2006
+
2007
+ Started POST "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:29:12 -0700
2008
+ Processing by Admin::EmailTemplatesController#create as HTML
2009
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"8A6UKDPN6O1+JE24LLZ/a60kH7Z86bZukApnn9fM3KU=", "effective_email_template"=>{"slug"=>"hello_world", "from"=>"nathan@agilestyle.com", "cc"=>"", "bcc"=>"", "subject"=>"A new email", "body"=>"This isn't actually used in the app"}, "commit"=>"Create Email template"}
2010
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2011
+  (0.1ms) begin transaction
2012
+ Effective::EmailTemplate Exists (0.1ms) SELECT 1 AS one FROM "email_templates" WHERE "email_templates"."slug" = 'hello_world' LIMIT 1
2013
+ SQL (0.2ms) INSERT INTO "email_templates" ("bcc", "body", "cc", "from", "slug", "subject", "template") VALUES (?, ?, ?, ?, ?, ?, ?) [["bcc", ""], ["body", "This isn't actually used in the app"], ["cc", ""], ["from", "nathan@agilestyle.com"], ["slug", "hello_world"], ["subject", "A new email"], ["template", "--- !ruby/object:Liquid::Template\nresource_limits: {}\noptions: {}\nprofiling: \nline_numbers: \nroot: !ruby/object:Liquid::Document\n tag_name: \n markup: \n options:\n :locale: !ruby/object:Liquid::I18n\n path: \"/Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/liquid-3.0.0/lib/liquid/locales/en.yml\"\n blank: \n nodelist:\n - This isn't actually used in the app\nwarnings: \n"]]
2014
+  (0.6ms) commit transaction
2015
+ Redirected to http://localhost:3001/admin/email_templates
2016
+ Completed 302 Found in 7ms (ActiveRecord: 1.1ms)
2017
+
2018
+
2019
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:29:12 -0700
2020
+ Processing by Admin::EmailTemplatesController#index as HTML
2021
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2022
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
2023
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.7ms)
2024
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (1339.1ms)
2025
+ Completed 200 OK in 7078ms (Views: 1356.6ms | ActiveRecord: 0.3ms)
2026
+
2027
+
2028
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:29:19 -0700
2029
+
2030
+
2031
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:29:19 -0700
2032
+
2033
+
2034
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:34:28 -0700
2035
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2036
+ Processing by Admin::EmailTemplatesController#index as HTML
2037
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2038
+ Effective::EmailTemplate Load (0.3ms) SELECT "email_templates".* FROM "email_templates"
2039
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (4466.5ms)
2040
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (5185.9ms)
2041
+ Completed 200 OK in 7357ms (Views: 5217.9ms | ActiveRecord: 1.4ms)
2042
+
2043
+
2044
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:34:36 -0700
2045
+
2046
+
2047
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:34:36 -0700
2048
+
2049
+
2050
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:35:43 -0700
2051
+
2052
+
2053
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:37:29 -0700
2054
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2055
+ Processing by Admin::EmailTemplatesController#index as HTML
2056
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2057
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
2058
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (4739.4ms)
2059
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (6056.7ms)
2060
+ Completed 200 OK in 9564ms (Views: 6120.8ms | ActiveRecord: 1.0ms)
2061
+
2062
+
2063
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:37:38 -0700
2064
+
2065
+
2066
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:37:38 -0700
2067
+
2068
+
2069
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:38:13 -0700
2070
+ Processing by Admin::EmailTemplatesController#index as HTML
2071
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2072
+ Effective::EmailTemplate Load (0.2ms) SELECT "email_templates".* FROM "email_templates"
2073
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (2.0ms)
2074
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (700.7ms)
2075
+ Completed 200 OK in 3442ms (Views: 714.7ms | ActiveRecord: 0.4ms)
2076
+
2077
+
2078
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:38:16 -0700
2079
+
2080
+
2081
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:38:16 -0700
2082
+
2083
+
2084
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:02 -0700
2085
+ Processing by Admin::EmailTemplatesController#index as HTML
2086
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2087
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (3.2ms)
2088
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (6.2ms)
2089
+ Completed 200 OK in 33ms (Views: 19.6ms | ActiveRecord: 0.7ms)
2090
+
2091
+
2092
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:02 -0700
2093
+
2094
+
2095
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:02 -0700
2096
+
2097
+
2098
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:14 -0700
2099
+ Processing by Admin::EmailTemplatesController#index as HTML
2100
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2101
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.3ms)
2102
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (2.3ms)
2103
+ Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.2ms)
2104
+
2105
+
2106
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:14 -0700
2107
+
2108
+
2109
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:14 -0700
2110
+
2111
+
2112
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2113
+ Processing by Admin::EmailTemplatesController#index as HTML
2114
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2115
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (2.4ms)
2116
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (4.4ms)
2117
+ Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.2ms)
2118
+
2119
+
2120
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2121
+
2122
+
2123
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2124
+
2125
+
2126
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2127
+ Processing by Admin::EmailTemplatesController#index as HTML
2128
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2129
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.5ms)
2130
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (3.0ms)
2131
+ Completed 200 OK in 26ms (Views: 23.1ms | ActiveRecord: 0.5ms)
2132
+
2133
+
2134
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2135
+
2136
+
2137
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2138
+
2139
+
2140
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2141
+ Processing by Admin::EmailTemplatesController#index as HTML
2142
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2143
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (2.3ms)
2144
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (4.7ms)
2145
+ Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.2ms)
2146
+
2147
+
2148
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2149
+
2150
+
2151
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:15 -0700
2152
+
2153
+
2154
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:44 -0700
2155
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2156
+ Processing by Admin::EmailTemplatesController#index as HTML
2157
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2158
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (96.3ms)
2159
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (103.6ms)
2160
+ Completed 200 OK in 210ms (Views: 126.1ms | ActiveRecord: 1.0ms)
2161
+
2162
+
2163
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:44 -0700
2164
+
2165
+
2166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:44 -0700
2167
+
2168
+
2169
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:40:46 -0700
2170
+ Processing by Admin::EmailTemplatesController#index as HTML
2171
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2172
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.8ms)
2173
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (3.3ms)
2174
+ Completed 200 OK in 27ms (Views: 24.2ms | ActiveRecord: 0.2ms)
2175
+
2176
+
2177
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:40:46 -0700
2178
+
2179
+
2180
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:40:46 -0700
2181
+
2182
+
2183
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2014-12-12 10:41:01 -0700
2184
+ Processing by Admin::EmailTemplatesController#index as HTML
2185
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2186
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.3ms)
2187
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (3.4ms)
2188
+ Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.2ms)
2189
+
2190
+
2191
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-12 10:41:01 -0700
2192
+
2193
+
2194
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-12 10:41:01 -0700
2195
+
2196
+
2197
+ Started GET "/" for 127.0.0.1 at 2015-01-30 13:55:30 -0700
2198
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2199
+ Processing by WelcomeController#index as HTML
2200
+ Rendered welcome/index.html.haml within layouts/application (3.2ms)
2201
+ Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.0ms)
2202
+
2203
+
2204
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-30 13:55:30 -0700
2205
+
2206
+
2207
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-30 13:55:30 -0700
2208
+
2209
+
2210
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2015-01-30 13:55:35 -0700
2211
+ Processing by Admin::EmailTemplatesController#index as HTML
2212
+ Completed 401 Unauthorized in 8ms
2213
+
2214
+
2215
+ Started GET "/users/sign_in" for 127.0.0.1 at 2015-01-30 13:55:35 -0700
2216
+ Processing by Devise::SessionsController#new as HTML
2217
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (1.8ms)
2218
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/sessions/new.html.erb within layouts/application (22.7ms)
2219
+ Completed 200 OK in 65ms (Views: 53.9ms | ActiveRecord: 0.6ms)
2220
+ User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
2221
+
2222
+
2223
+ Started POST "/users/sign_in" for 127.0.0.1 at 2015-01-30 13:56:08 -0700
2224
+ Processing by Devise::SessionsController#create as HTML
2225
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"3weNCLVuJZPo5a6mRz9KUDt00VCcX+kRaxaAgbgdHN4=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
2226
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' ORDER BY "users"."id" ASC LIMIT 1
2227
+ Completed 401 Unauthorized in 103ms
2228
+ Processing by Devise::SessionsController#new as HTML
2229
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"3weNCLVuJZPo5a6mRz9KUDt00VCcX+kRaxaAgbgdHN4=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
2230
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/shared/_links.html.erb (0.6ms)
2231
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/gems/devise-3.4.1/app/views/devise/sessions/new.html.erb within layouts/application (4.6ms)
2232
+ Completed 200 OK in 110ms (Views: 22.8ms | ActiveRecord: 0.0ms)
2233
+
2234
+
2235
+ Started POST "/users/sign_in" for 127.0.0.1 at 2015-01-30 13:56:15 -0700
2236
+ Processing by Devise::SessionsController#create as HTML
2237
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"3weNCLVuJZPo5a6mRz9KUDt00VCcX+kRaxaAgbgdHN4=", "user"=>{"email"=>"nathan@agilestyle.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
2238
+ User Load (5.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'nathan@agilestyle.com' ORDER BY "users"."id" ASC LIMIT 1
2239
+  (0.1ms) begin transaction
2240
+ SQL (0.6ms) UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2015-01-30 20:56:15.777113"], ["sign_in_count", 2], ["updated_at", "2015-01-30 20:56:15.778608"]]
2241
+  (0.6ms) commit transaction
2242
+ Redirected to http://localhost:3001/admin/email_templates
2243
+ Completed 302 Found in 119ms (ActiveRecord: 6.9ms)
2244
+
2245
+
2246
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2015-01-30 13:56:15 -0700
2247
+ Processing by Admin::EmailTemplatesController#index as HTML
2248
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2249
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (147.8ms)
2250
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (153.9ms)
2251
+ Completed 200 OK in 258ms (Views: 172.1ms | ActiveRecord: 0.8ms)
2252
+
2253
+
2254
+ Started GET "/admin/email_templates/new" for 127.0.0.1 at 2015-01-30 13:56:21 -0700
2255
+ Processing by Admin::EmailTemplatesController#new as HTML
2256
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2257
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/_form.html.haml (74.2ms)
2258
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/new.html.haml within layouts/application (77.8ms)
2259
+ Completed 200 OK in 99ms (Views: 95.5ms | ActiveRecord: 0.2ms)
2260
+  (0.5ms) SELECT COUNT(*) FROM "email_templates"
2261
+
2262
+
2263
+ Started GET "/admin/email_templates" for 127.0.0.1 at 2015-01-30 13:56:59 -0700
2264
+ Processing by Admin::EmailTemplatesController#index as HTML
2265
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2266
+ Rendered /Users/nathan/.rvm/gems/ruby-2.1.0@effective_email_templates/bundler/gems/effective_datatables-73c9a8d7fe16/app/views/effective/datatables/_datatable.html.haml (1.9ms)
2267
+ Rendered /Users/nathan/gems/effective_email_templates/app/views/admin/email_templates/index.html.haml within layouts/application (3.6ms)
2268
+ Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.3ms)
2269
+
2270
+
2271
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-30 13:56:59 -0700
2272
+
2273
+
2274
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-30 13:56:59 -0700
2275
+ Effective::EmailTemplate Load (0.7ms) SELECT "email_templates".* FROM "email_templates" WHERE "email_templates"."slug" = 'after_create_user'