浏览代码

Fixed error when installing - closes #25

Andrew Kane 9 年之前
父节点
当前提交
34db8376a0
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      lib/blazer.rb

+ 8 - 1
lib/blazer.rb

@@ -23,7 +23,14 @@ module Blazer
   end
 
   def self.settings
-    @settings ||= YAML.load(ERB.new(File.read(Rails.root.join("config", "blazer.yml"))).result)
+    @settings ||= begin
+      path = Rails.root.join("config", "blazer.yml").to_s
+      if File.exist?(path)
+        YAML.load(ERB.new(File.read(path)).result)
+      else
+        {}
+      end
+    end
   end
 
   def self.data_sources