class Permalinkable::Configure

Public Class Methods

configs() click to toggle source
# File lib/permalinkable/configure.rb, line 9
def self.configs
  @configs ||= Hashie::Mash.new
end
configure() { |configs| ... } click to toggle source
# File lib/permalinkable/configure.rb, line 5
def self.configure
  yield self.configs
end
secret() click to toggle source
# File lib/permalinkable/configure.rb, line 13
def self.secret
  self.configs.secret
end