Sha256: 9fed10d0704d2718b5556a1dda025788c2a96e21ed32dcd2ae460272666232f0

Contents?: true

Size: 449 Bytes

Versions: 3

Compression:

Stored size: 449 Bytes

Contents

module IQ # :nodoc:
  module ACL # :nodoc:
    def self.version
      VERSION::STRING
    end

    module VERSION #:nodoc:
      MAJOR = 1
      MINOR = 0
      TINY  = 1

      STRING = [MAJOR, MINOR, TINY].join('.')
    end
    
    autoload :Basic, File.join(File.dirname(__FILE__), 'acl', 'basic')
    
    # This error is raised when a user does not have access to a supplied path.
    class AccessDeniedError < StandardError
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
iq-acl-1.0.4 lib/iq/acl.rb
iq-acl-1.0.3 lib/iq/acl.rb
iq-acl-1.0.2 lib/iq/acl.rb