Sha256: 19e417683fa33b073d588e1e8289f8a5e461d777fffaec1b3278d4677025efcd
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
require 'active_support' require_relative 'touth/engine' if defined? Rails # Touth #----------------------------------------------- module Touth extend ActiveSupport::Autoload autoload :ActsAsTokenAuthenticatable autoload :ActiveRecordSupport autoload :ActionControllerSupport autoload :VERSION class Configuration attr_accessor :access_token_lifetime, :client_secret_key, :password_field def initialize @access_token_lifetime = 60 * (24 * 60 * 60) # 60 days @client_secret_key = '' # use SecureRandom.hex(64) to generate one @password_field = :encrypted_password end end class << self def setup @configuration ||= Configuration.new yield @configuration if block_given? end def method_missing(method_name, *args, &block) if @configuration.respond_to? method_name @configuration.send method_name, *args, &block else super end end def respond_to?(method_name, include_private = false) @configuration.respond_to? method_name end end end # Setup #----------------------------------------------- Touth.setup # Include #----------------------------------------------- ActiveSupport.on_load(:active_record) do extend Touth::ActiveRecordSupport::ClassMethods end ActiveSupport.on_load(:action_controller) do extend Touth::ActionControllerSupport::ClassMethods include Touth::ActionControllerSupport::InstanceMethods end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
touth-0.0.2 | lib/touth.rb |
touth-0.0.1 | lib/touth.rb |