http-token-auth 0.1.2 → 0.1.3

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: b3bc2c80fdd2802666ec99299fe61b27a6d4e456
4
- data.tar.gz: a0862da28745d8617f6cb9e18562e8112ace44df
3
+ metadata.gz: 097c00815be255ddc1a4313b5ec588810e36bf08
4
+ data.tar.gz: 33c8245b60b5463a991a41725eb0a2d45cc31b11
5
5
  SHA512:
6
- metadata.gz: 4f15155fcf7a96edd21352d5b549f58d2040b59824350ead99f03fd259581251733ac420266be3d5b0987583f91f4f648468e7f641a5a9880aaefb9f3b26e6bd
7
- data.tar.gz: 4f39b32760657f4d17b5b1999771b65863f3291f239dff81bc8f2bc74d1b8501b1addacd694ddea936a6514fd802afeb94f20cf123e959884c94c188e782bcb0
6
+ metadata.gz: a054fb2fc0347d4103de9866d56879352ed6cbcc2ed74edebf58a043f77956a5f7b8e722081c8ee4ccf5359b9a37cad74a49b59db86ca366ca24a302b6085573
7
+ data.tar.gz: 47757957ed6f344d4f3cdd53a49f0cd74220dd86346efe1a5d6519f975e9cd2880db448feb779abd97dfb7e5560a17cb870c62f72a5e8e786ef9bbe3649082c4
@@ -7,22 +7,14 @@ require 'http/token_auth/version'
7
7
  Gem::Specification.new do |gem|
8
8
  gem.name = 'http-token-auth'
9
9
  gem.version = HTTP::TokenAuth::VERSION
10
- gem.required_ruby_version = '>= 2.0.0'
10
+ gem.required_ruby_version = '>= 2.1.0'
11
11
 
12
- gem.authors = ['Felipe Dornelas']
13
- gem.email = ['m@felipedornelas.com']
14
- gem.homepage = 'https://github.com/felipead/http-token-auth'
15
- gem.license = 'MIT'
16
-
17
- gem.summary = %s{Ruby gem to handle the HTTP Token Access Authentication draft specification, for securing HTTP-based service and microservice architectures using token credentials.}
18
-
19
- gem.description = %s{Ruby gem to handle the HTTP Token Access Authentication draft specification, for securing HTTP-based service and microservice architectures using token credentials.
20
-
21
- It supports both parsing and building a HTTP "Authentication" request header and a "WWW-Authenticate" response header using the token scheme.
22
-
23
- Rather than being a complete opinionated authentication solution that only works with Rails or a specific HTTP framework, this library aims to be minimalistic and unobtrusive. This allows more flexibility and makes it compatible with virtually any HTTP servers and clients that run on the Ruby platform.
24
-
25
- This library does not authenticate users nor provide methods for obtaining token credentials. For that you can use another protocol, such as OAuth - http://tools.ietf.org/html/rfc5849.}
12
+ gem.authors = ['Felipe Dornelas']
13
+ gem.email = ['m@felipedornelas.com']
14
+ gem.homepage = 'https://github.com/felipead/http-token-auth'
15
+ gem.license = 'MIT'
16
+ gem.summary = %s(Ruby gem to handle the HTTP Token Access Authentication draft specification, for securing HTTP-based service and microservice architectures using token credentials.)
17
+ gem.description = %s(Ruby gem to handle the HTTP Token Access Authentication draft specification, for securing HTTP-based service and microservice architectures using token credentials. It supports both parsing and building a HTTP "Authentication" request header and a "WWW-Authenticate" response header using the token scheme.)
26
18
 
27
19
  gem.files = `git ls-files bin lib http-token-auth.gemspec LICENSE.txt`.split($/)
28
20
  gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
@@ -30,5 +22,4 @@ This library does not authenticate users nor provide methods for obtaining token
30
22
  gem.require_paths = ['lib']
31
23
 
32
24
  gem.add_development_dependency 'bundler', '~> 1.11'
33
- gem.add_development_dependency 'rake', '~> 10.0'
34
25
  end
@@ -1,5 +1,5 @@
1
1
  module HTTP
2
2
  module TokenAuth
3
- VERSION = '0.1.2'.freeze
3
+ VERSION = '0.1.3'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http-token-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felipe Dornelas
@@ -24,28 +24,10 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.11'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '10.0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '10.0'
41
- description: |-
42
- Ruby gem to handle the HTTP Token Access Authentication draft specification, for securing HTTP-based service and microservice architectures using token credentials.
43
-
44
- It supports both parsing and building a HTTP "Authentication" request header and a "WWW-Authenticate" response header using the token scheme.
45
-
46
- Rather than being a complete opinionated authentication solution that only works with Rails or a specific HTTP framework, this library aims to be minimalistic and unobtrusive. This allows more flexibility and makes it compatible with virtually any HTTP servers and clients that run on the Ruby platform.
47
-
48
- This library does not authenticate users nor provide methods for obtaining token credentials. For that you can use another protocol, such as OAuth - http://tools.ietf.org/html/rfc5849.
27
+ description: Ruby gem to handle the HTTP Token Access Authentication draft specification,
28
+ for securing HTTP-based service and microservice architectures using token credentials.
29
+ It supports both parsing and building a HTTP "Authentication" request header and
30
+ a "WWW-Authenticate" response header using the token scheme.
49
31
  email:
50
32
  - m@felipedornelas.com
51
33
  executables: []
@@ -73,7 +55,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
73
55
  requirements:
74
56
  - - ">="
75
57
  - !ruby/object:Gem::Version
76
- version: 2.0.0
58
+ version: 2.1.0
77
59
  required_rubygems_version: !ruby/object:Gem::Requirement
78
60
  requirements:
79
61
  - - ">="