lib/massa/tool.rb in massa-0.1.0 vs lib/massa/tool.rb in massa-0.1.1

- old
+ new

@@ -2,10 +2,16 @@ module Massa class Tool class << self def list - YAML.load_file(config_file_from_gem).merge YAML.load_file(config_file_from_project) + default_tools = YAML.load_file(config_file_from_gem) + + if File.exist?(config_file_from_project) + default_tools.merge YAML.load_file(config_file_from_project) + else + default_tools + end end def config_file_from_gem File.expand_path('../../../config/default_tools.yml', __FILE__) end