class Berkshelf::UnknownCompressionType
Public Class Methods
new(target, destination)
click to toggle source
# File lib/berkshelf/errors.rb, line 326 def initialize(target, destination) @target = target @destination = destination end
Public Instance Methods
to_s()
click to toggle source
# File lib/berkshelf/errors.rb, line 331 def to_s "The file at '#{@target}' is not a known compression type, and cannot be decompressed into '#{@destination}'" end
Also aliased as: message