module Rbnotes

Constants

RELEASE
VERSION

Public Class Methods

conf(String) → Rbnotes::Conf click to toggle source

Gets the instance of Rbnotes::Conf. An optional argument is to specify the absolute path for the configuration file.

# File lib/rbnotes/conf.rb, line 128
def conf(conf_path = nil)
  Conf.new(conf_path)
end
utils() click to toggle source

Retrieves the singleton instance of Rbnotes::Utils class. Typical usage is as follows:

Rbnotes.utils.find_editor("emacsclient")
# File lib/rbnotes/utils.rb, line 19
def utils
  Utils.instance
end