class Plz::Commands::UndecodableSchemaFile

Public Class Methods

new(pathname: nil) click to toggle source
# File lib/plz/commands/undecodable_schema_file.rb, line 4
def initialize(pathname: nil)
  @pathname = pathname
end

Public Instance Methods

call() click to toggle source
# File lib/plz/commands/undecodable_schema_file.rb, line 8
def call
  puts "Failed to decode #{@pathname}"
end