Sha256: fdf469bc963642d8b20396eb553c07a4c3571909fd8ba56437455c260640bee6

Contents?: true

Size: 388 Bytes

Versions: 4

Compression:

Stored size: 388 Bytes

Contents

require 'rack/lobster'
require 'rack/simple_auth'

config = {
  'GET' => 'path',
  'POST' => 'params',
  'DELETE' => 'path',
  'PUT' => 'path',
  'PATCH' => 'path',
  'tolerance' => 0.5,
  'signature' => 'test_signature',
  'secret' => 'test_secret',
  'logpath' => "#{File.expand_path('..', __FILE__)}/logs",
  'steps' => 0.01
}

use Rack::SimpleAuth::HMAC, config
run Rack::Lobster.new

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rack-simple_auth-0.1.4 test/config.ru
rack-simple_auth-0.1.3 test/config.ru
rack-simple_auth-0.1.2 test/config.ru
rack-simple_auth-0.1.1 test/config.ru