This commit is contained in:
2015-09-12 15:37:05 -05:00
commit cb7e47a466
77 changed files with 1374 additions and 0 deletions

0
lib/assets/.keep Normal file
View File

11
lib/secrets.rb Normal file
View File

@ -0,0 +1,11 @@
require 'yaml'
module Secrets
def self.load
return nil unless File.exist?("./config/application.yml")
secrets = YAML.load(File.read('./config/application.yml'))
secrets.each do |k, v|
ENV[k] = v
end
end
end

0
lib/tasks/.keep Normal file
View File