module SignedForm

Constants

DEFAULT_OPTIONS
MAJOR
MINOR
PATCH
PRE
VERSION

Attributes

digest_store[W]
options[W]
secret_key[RW]

Public Class Methods

config() { |self| ... } click to toggle source
# File lib/signed_form.rb, line 35
def config
  yield self
end
digest_store() click to toggle source
# File lib/signed_form.rb, line 31
def digest_store
  @digest_store ||= SignedForm::DigestStores::NullStore.new
end
options() click to toggle source
# File lib/signed_form.rb, line 26
def options
  @options ||= DEFAULT_OPTIONS.dup
end