http-token-auth 0.1.1 → 0.1.2

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: 72d0c4d25025108473ae58f034c6e53a57cf3de6
4
- data.tar.gz: 3f47f2a7f4670ae2db05e344c7bbedae4132e8b4
3
+ metadata.gz: b3bc2c80fdd2802666ec99299fe61b27a6d4e456
4
+ data.tar.gz: a0862da28745d8617f6cb9e18562e8112ace44df
5
5
  SHA512:
6
- metadata.gz: 995814078d7d42ce746695a3527585543cb419500ddeaafea75e3bf9c7d5fdd2402690aba60ca8e60e4a96f276bb9f09cf8a6751f4c31553ff576f15c33e3eb6
7
- data.tar.gz: 900935a434997240e0b5f443e8f64c1b342708aaed32d2b5527e91627caf3ed409e61e78241b2f63fdd85a75f737474a7a96abde7d250685c9f246457a8d9f1f
6
+ metadata.gz: 4f15155fcf7a96edd21352d5b549f58d2040b59824350ead99f03fd259581251733ac420266be3d5b0987583f91f4f648468e7f641a5a9880aaefb9f3b26e6bd
7
+ data.tar.gz: 4f39b32760657f4d17b5b1999771b65863f3291f239dff81bc8f2bc74d1b8501b1addacd694ddea936a6514fd802afeb94f20cf123e959884c94c188e782bcb0
@@ -1,23 +1,33 @@
1
1
  # -*- encoding: utf-8 -*-
2
+
2
3
  lib = File.expand_path('../lib', __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'http/token_auth/version'
5
6
 
6
7
  Gem::Specification.new do |gem|
7
- gem.name = 'http-token-auth'
8
- gem.version = HTTP::TokenAuth::VERSION
9
- gem.authors = ['Felipe Dornelas']
10
- gem.email = ['m@felipedornelas.com']
11
- gem.description = %s(Ruby gem to handle the HTTP Token Access Authentication.)
12
- gem.summary = %s(Ruby gem to handle the HTTP Token Access Authentication.)
13
- gem.homepage = 'https://github.com/felipead/http-token-auth'
14
-
15
- # rubocop:disable Style/SpecialGlobalVars
8
+ gem.name = 'http-token-auth'
9
+ gem.version = HTTP::TokenAuth::VERSION
10
+ gem.required_ruby_version = '>= 2.0.0'
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.}
26
+
16
27
  gem.files = `git ls-files bin lib http-token-auth.gemspec LICENSE.txt`.split($/)
17
28
  gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
18
29
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
30
  gem.require_paths = ['lib']
20
- gem.license = 'MIT'
21
31
 
22
32
  gem.add_development_dependency 'bundler', '~> 1.11'
23
33
  gem.add_development_dependency 'rake', '~> 10.0'
@@ -1,5 +1,5 @@
1
1
  module HTTP
2
2
  module TokenAuth
3
- VERSION = '0.1.1'.freeze
3
+ VERSION = '0.1.2'.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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felipe Dornelas
@@ -38,7 +38,14 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: Ruby gem to handle the HTTP Token Access Authentication.
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.
42
49
  email:
43
50
  - m@felipedornelas.com
44
51
  executables: []
@@ -66,7 +73,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
73
  requirements:
67
74
  - - ">="
68
75
  - !ruby/object:Gem::Version
69
- version: '0'
76
+ version: 2.0.0
70
77
  required_rubygems_version: !ruby/object:Gem::Requirement
71
78
  requirements:
72
79
  - - ">="
@@ -77,5 +84,6 @@ rubyforge_project:
77
84
  rubygems_version: 2.4.5.1
78
85
  signing_key:
79
86
  specification_version: 4
80
- summary: Ruby gem to handle the HTTP Token Access Authentication.
87
+ summary: Ruby gem to handle the HTTP Token Access Authentication draft specification,
88
+ for securing HTTP-based service and microservice architectures using token credentials.
81
89
  test_files: []