captivus-auth_hmac 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ require 'captivus/auth_hmac'
@@ -1,3 +1,4 @@
1
+ require 'captivus/auth_hmac/version'
1
2
  require 'openssl'
2
3
  require 'base64'
3
4
 
@@ -1,5 +1,5 @@
1
1
  module Captivus
2
2
  class AuthHMAC
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
- require 'captivus/auth_hmac'
2
1
  require 'net/http'
3
2
  require 'time'
3
+ require 'captivus/auth_hmac'
4
4
 
5
5
  describe Captivus::AuthHMAC do
6
6
  # Class for doing a custom signature
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
- require 'captivus/auth_hmac'
3
2
  require 'rack/test'
4
3
  require 'net/http'
4
+ require 'captivus/auth_hmac'
5
5
 
6
6
  describe Captivus::AuthHMAC do
7
7
  include Rack::Test::Methods
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: captivus-auth_hmac
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-18 00:00:00.000000000 Z
12
+ date: 2012-10-22 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: HMAC based authentication for HTTP
15
15
  email:
@@ -24,11 +24,10 @@ files:
24
24
  - README.md
25
25
  - Rakefile
26
26
  - captivus-auth_hmac.gemspec
27
- - lib/captivus.rb
27
+ - lib/captivus-auth_hmac.rb
28
28
  - lib/captivus/auth_hmac.rb
29
29
  - lib/captivus/auth_hmac/version.rb
30
30
  - spec/captivus/auth_hmac_spec.rb
31
- - spec/captivus_spec.rb
32
31
  - spec/integration/auth_hmac_spec.rb
33
32
  - spec/spec_helper.rb
34
33
  homepage: ''
@@ -57,6 +56,5 @@ specification_version: 3
57
56
  summary: HMAC based authentication for HTTP
58
57
  test_files:
59
58
  - spec/captivus/auth_hmac_spec.rb
60
- - spec/captivus_spec.rb
61
59
  - spec/integration/auth_hmac_spec.rb
62
60
  - spec/spec_helper.rb
@@ -1,6 +0,0 @@
1
- require 'captivus/auth_hmac/version'
2
-
3
- module Captivus
4
- end
5
-
6
- require 'captivus/auth_hmac'
@@ -1,4 +0,0 @@
1
- require 'captivus'
2
-
3
- describe Captivus do
4
- end