rack-simple_auth 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0166a62aa16634f85f815db10c9856bf39e9e11c
4
- data.tar.gz: 7a4043bcbe808edfb1eeb580d737914b47637f90
3
+ metadata.gz: 9735c0a4e90adba0ea36922a39003a8a1046b6c3
4
+ data.tar.gz: 3bd7569c566dd989a45415621117291f73ce0eff
5
5
  SHA512:
6
- metadata.gz: f32b803d35245a9a37e665fff4b39fde60bc4c3431318bc8c7480b8d6a7fb1cae99a9aee3214634e059cd45f7674e01a2f074d201945e3a839b3001b1fb3365f
7
- data.tar.gz: a257ea5f3f9f234c74e308932239280b118dda9f6475b0ffbffc91627fe08835803ea901af3e91f848089ef93f8f1c69786815c5cfdbf30ac5e9b80a65762638
6
+ metadata.gz: a2856c77a082eec813d49b8bd34ae0d5bc0abd96deb5adacac2436a59dd932b26d334b4f88d23f39daa5586d070f59abe25ce205f346f8d7f85e2e76fc2d060c
7
+ data.tar.gz: 3489c779bfad37d133c35bac3b36b45e07a87e89f486bbeec18a4bae020ecf5fe2deddb0676f75642d782be412834f2ec3c5ce76c67cb9c618b88a11bc16fafe
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Benjamin Klotz
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/MANIFEST CHANGED
@@ -1,4 +1,4 @@
1
- LICENSE.txt
1
+ LICENSE
2
2
  MANIFEST
3
3
  README.rdoc
4
4
  checksum/rack-simple_auth-0.0.9.gem.sha512
@@ -17,4 +17,4 @@ lib/rack/simple_auth/hmac/request.rb
17
17
  lib/rack/simple_auth/hmac/response.rb
18
18
  lib/rack/simple_auth/logger.rb
19
19
  lib/rack/simple_auth/version.rb
20
- rack-simple_auth.gemspec
20
+ rack-simple_auth.gemspec
data/README.rdoc CHANGED
@@ -111,7 +111,7 @@ For PHP you have to use +round()+ and +microtime()+ :
111
111
 
112
112
  ==== Examples
113
113
 
114
- Examples can be found in doc/examples
114
+ Examples can be found in examples dir
115
115
 
116
116
  == Contributing
117
117
 
@@ -8,6 +8,7 @@ require 'rack/simple_auth/hmac/response'
8
8
  require 'rack/simple_auth/hmac/middleware'
9
9
 
10
10
  require 'json'
11
+ require 'openssl'
11
12
 
12
13
  # Rack Module
13
14
  module Rack
@@ -2,6 +2,6 @@ module Rack
2
2
  # Module which Contains different Authorization / Authentication Classes (HMAC, ..)
3
3
  module SimpleAuth
4
4
  # Current Gem Version
5
- VERSION = '1.0.5'
5
+ VERSION = '1.0.6'
6
6
  end
7
7
  end
@@ -28,7 +28,6 @@ Gem::Specification.new do |spec|
28
28
  spec.add_development_dependency "coveralls", '~> 0.7'
29
29
  spec.add_development_dependency 'codeclimate-test-reporter'
30
30
  spec.add_development_dependency "rack-test", '~> 0.6'
31
- spec.add_development_dependency 'rspec', '~> 3'
32
-
33
31
  spec.add_development_dependency 'minitest', '~> 5.3'
32
+ spec.add_development_dependency 'minitest-reporters'
34
33
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-simple_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benny1992
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-20 00:00:00.000000000 Z
11
+ date: 2014-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -95,33 +95,33 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0.6'
97
97
  - !ruby/object:Gem::Dependency
98
- name: rspec
98
+ name: minitest
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '3'
103
+ version: '5.3'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '3'
110
+ version: '5.3'
111
111
  - !ruby/object:Gem::Dependency
112
- name: minitest
112
+ name: minitest-reporters
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - "~>"
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: '5.3'
117
+ version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - "~>"
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
- version: '5.3'
124
+ version: '0'
125
125
  description: SimpleAuth HMAC authentication
126
126
  email:
127
127
  - r3qnbenni@gmail.com
@@ -129,7 +129,7 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
- - LICENSE.txt
132
+ - LICENSE
133
133
  - MANIFEST
134
134
  - README.rdoc
135
135
  - checksum/rack-simple_auth-0.0.9.gem.sha512
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 Benny1992
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.