module WB

Constants

VERSION

Public Class Methods

config(path: default_config) click to toggle source
# File lib/wb.rb, line 17
def self.config(path: default_config)
  @config ||= Config.new(path)
end
default_config() click to toggle source
# File lib/wb.rb, line 13
def self.default_config
  File.join(Etc.getpwuid.dir, ".workbookrc")
end