Sha256: 119bf5a38c3dcfaabcf1732fc0f519e0fe95ee9670e766a40531adfde0af521e

Contents?: true

Size: 538 Bytes

Versions: 1

Compression:

Stored size: 538 Bytes

Contents

# frozen_string_literal: true

require 'dry-configurable'

# The module 'JwtAuth' provides jwt authentication for rails using the jwt gem
# @author Researchable
module JwtAuthenticable
  extend Dry::Configurable
  setting :algorithm
  setting :jwt_secret_key, default: nil

  class Error < StandardError; end
end

require_relative 'jwt_authenticable/version'
require_relative 'jwt_authenticable/exceptions'
require_relative 'jwt_authenticable/responses'
require_relative 'jwt_authenticable/auth'
require_relative 'jwt_authenticable/info'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
researchable_jwt-authenticable-1.0.0 lib/jwt_authenticable.rb