Skip to content

Instantly share code, notes, and snippets.

@jacobsimeon
Created September 11, 2013 17:29
Show Gist options
  • Save jacobsimeon/6526951 to your computer and use it in GitHub Desktop.
Save jacobsimeon/6526951 to your computer and use it in GitHub Desktop.
Add this to root of the projects and name it `custom_plan.rb`
require 'zeus/rails'
require 'dotenv'
class CustomPlan < Zeus::Rails
def boot
Dotenv.load
super
end
end
Zeus.plan = CustomPlan.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment