Przeglądaj źródła

Fixed error when installing - closes #25

Andrew Kane 9 lat temu
rodzic
commit
34db8376a0
1 zmienionych plików z 8 dodań i 1 usunięć
  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