lib/ahoy_email/engine.rb in ahoy_email-0.2.1 vs lib/ahoy_email/engine.rb in ahoy_email-0.2.2
- old
+ new
@@ -1,9 +1,10 @@
module AhoyEmail
class Engine < ::Rails::Engine
initializer "ahoy_email" do |app|
- AhoyEmail.secret_token = app.config.respond_to?(:secret_key_base) ? app.config.secret_key_base : app.config.secret_token
+ secrets = app.respond_to?(:secrets) ? app.secrets : app.config
+ AhoyEmail.secret_token = secrets.respond_to?(:secret_key_base) ? secrets.secret_key_base : secrets.secret_token
end
end
end