module Shack

Constants

VERSION

Public Class Methods

sha() click to toggle source

If the Middleware is called and initialized, this sha will be set This could be used for easy passing to something like `Airbrake`

# File lib/shack.rb, line 10
def self.sha
  if defined? @@sha
    @@sha
  end
end
sha=(sha) click to toggle source
# File lib/shack.rb, line 16
def self.sha=(sha)
  @@sha = sha
end