-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwarden-hmac-authentication.gemspec
36 lines (29 loc) · 1.67 KB
/
warden-hmac-authentication.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "warden-hmac-authentication"
s.version = "0.6.3"
s.platform = Gem::Platform::RUBY
s.authors = ["Felix Gilcher", "Florian Gilcher"]
s.email = ["felix.gilcher@asquera.de", "florian.gilcher@asquera.de"]
s.homepage = "https://github.com/Asquera/warden-hmac-authentication"
s.summary = %q{Provides request based, non-interactive authentication for APIs}
s.description = %q{This gem provides request authentication via [HMAC](http://en.wikipedia.org/wiki/Hmac). The main usage is request based, noninteractive
authentication for API implementations. Two strategies are supported that differ mainly in how the authentication information is
transferred to the server: One header-based authentication method and one query-based. The authentication scheme is in some parts based
on ideas laid out in this article and the following discussion:
http://broadcast.oreilly.com/2009/12/principles-for-standardized-rest-authentication.html
The gem also provides a small helper class that can be used to generate request signatures.}
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.require_paths = ["lib"]
s.executables = ["warden-hmac-authentication"]
s.add_runtime_dependency(%q<rack>)
s.add_runtime_dependency(%q<warden>)
s.add_development_dependency(%q<rake>)
s.add_development_dependency(%q<rack-test>)
s.add_development_dependency(%q<riot>)
s.add_development_dependency(%q<timecop>)
s.add_development_dependency(%q<simplecov>)
s.add_development_dependency(%q<simplecov-html>)
s.add_development_dependency(%q<trollop>)
end