lib/manifest.rb in machinery-tool-1.8.2 vs lib/manifest.rb in machinery-tool-1.9.0
- old
+ new
@@ -22,10 +22,10 @@
attr_accessor :name, :path, :json, :hash
def self.load(name, path)
unless File.exists?(path)
raise Machinery::Errors::SystemDescriptionNotFound.new(
- "A system description with the name #{name} was not found."
+ "Couldn't find a system description with the name '#{name}'."
)
end
json = File.read(path)
Manifest.new(name, json, path)