class TMP::InstanceCore

Public Class Methods

new(path_string) click to toggle source
# File lib/tmp/deprecated/init.rb, line 8
def initialize path_string

  unless path_string.class <= String
    raise ArgumentError, "path must be a string like type"
  end

  folder_path path_string

end