Sha256: e41d14be9ba19484cecff88ed68c1a0a80fecd8669607dedb3a1ac5dab4ec036
Contents?: true
Size: 508 Bytes
Versions: 5
Compression:
Stored size: 508 Bytes
Contents
# Copyright (c) 2008 The Kaphan Foundation # # For licensing information see LICENSE. # # Please visit http://www.peerworks.org/contact for further information. # module Atom class Configuration def self.auth_hmac_enabled? unless defined?(@auth_hmac_enabled) begin gem 'auth-hmac' require 'auth-hmac' @auth_hmac_enabled = true rescue @auth_hmac_enabled = false end else @auth_hmac_enabled end end end end
Version data entries
5 entries across 5 versions & 2 rubygems