class Plz::Commands::BaseUrlNotFound

Public Class Methods

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

Public Instance Methods

call() click to toggle source
# File lib/plz/commands/base_url_not_found.rb, line 8
def call
  puts "#{@pathname} has no base URL at top-level links property"
end