RailsCasts Pro episodes are now free!

Learn more or hide this

Andrew Charles Potter Kelley's Profile

GitHub User: ACPK

Site: www.somvio.com

Comments by Andrew Charles Potter Kelley

Avatar

To work with the gem's latest update, you have to change the line:

config.middleware.use ExceptionNotification,

to

config.middleware.use ExceptionNotification::Rack,

Avatar

How do I setup multiple environments in the .ENV file?

Avatar

Found the issue which was that it an edit needs to be made for it to work with existing entries on Heroku :)

Avatar

Friendly_ID was working for me before I edited by After editing the _add_slug_to_users.rb file then ran the command User.find_each(&:save)

For each user, I got an error that was similar to:

User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("slug" = 'carleton-howell' OR "slug" LIKE 'carleton-howell--%'ESCAPE '\') AND (id <> 2) ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('example-1@railstutorial.org') AND "users"."id" != 2) LIMIT 1
(0.1ms) rollback transaction