rename load! to load_env!

This commit is contained in:
Chris Continanza
2011-12-05 12:27:32 -08:00
parent 44a5dff724
commit 58e4cdafd7
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ module Foreman
class AppDoesNotExist < Exception; end
# load contents of env_file into ENV
def self.load!(env_file = './.env')
def self.load_env!(env_file = './.env')
require 'foreman/engine'
Foreman::Engine.load_env(env_file)
end