class BunBo::FileExisted

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
# File lib/bun_bo/results/file_existed.rb, line 5
def initialize(path)
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/bun_bo/results/file_existed.rb, line 9
def message
  "#{path} exists. No modification is applied for this file."
end