module Bitmarkable

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/bitmarkable/config.rb, line 10
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/bitmarkable/config.rb, line 14
def self.configure
  yield(config) if block_given?
end