lib/fulmar/domain/service/configuration_service.rb in fulmar-2.0.0 vs lib/fulmar/domain/service/configuration_service.rb in fulmar-2.0.1
- old
+ new
@@ -21,11 +21,11 @@
environments: {},
features: {},
hosts: {},
}
- include Singleton
+ include ::Singleton
attr_reader :environment, :target
attr_accessor :load_user_config, :debug
def initialize
@@ -97,10 +97,10 @@
end
def check_version(version)
return if version.nil?
unless Gem::Dependency.new('', version).match?('', Fulmar::VERSION)
- fail "Project requires a newer version of fulmar: #{version}"
+ fail "Project requires another version of fulmar: #{version}"
end
end
end
end
end