starburstgem / starburst

In-app announcements to users in your Rails app
MIT License
258 stars 29 forks source link

fix dependency for Announcements controller #7

Closed mikdiet closed 9 years ago

mikdiet commented 9 years ago

Previously Rails autoload mechanism (in dev env) did know about starburst/application_controller presence, so Starburst::AnnouncementsController inherited from ::ApplicationController, not Starburst::ApplicationController, that causes errors due to authentication, etc.

require_dependency directive fixes this issue.