jwt-auth_zero 0.2.0 → 0.2.1

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: bc9fdddbe91c80c3ed0987953243cfed5883c874
4
- data.tar.gz: f3180c4c60b4f2074b4dc35a6ea032fa3b6ebce8
3
+ metadata.gz: c2733d8204a301488a11fdd6b7f27a7172458f2e
4
+ data.tar.gz: e9ce257d23824b0d3cc49ec19fa8852448219ded
5
5
  SHA512:
6
- metadata.gz: 721da3a961a7ad241f3b0ea98084744f6256fbfd2a4af9db4dcd2f4c377c84bb800d5d731312079f715fad785a000ad2d53231cbeec2cda3f45ba08cd6cd7842
7
- data.tar.gz: 4f052fca127fd7fa9b79f086fc52cc053b73864d9201963e4c3241bc1ac743fd326d174178f624b63532290118570aab0116d7ed1d541c0c2b7a249c1e2dc06a
6
+ metadata.gz: 98900a8b4b353bd446827b2cb91695d93dddc8a72e9da49ed6cec279060fd5ab535a1102e7328e092f9c6a4820607da6f89a975fafa18e8347d159611e970c71
7
+ data.tar.gz: 97a8e617564df127a61a38af3ff0a0c02d86dc9a862a7a785bf6b56e40e1c162ceed5538f0047413df6a57ed8f6161e74154bc5cb212fc79a99e42d2d5591d5a
Binary file
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -1,12 +1,11 @@
1
1
  # JWT::AuthZero
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/jwt-auth_zero.svg)](http://badge.fury.io/rb/jwt-auth_zero)
4
- [![Code Climate GPA](https://codeclimate.com/github/tangrufus/jwt-auth_zero.svg)](https://codeclimate.com/github/tangrufus/jwt-auth_zero)
5
- [![Code Climate Coverage](https://codeclimate.com/github/tangrufus/jwt-auth_zero/coverage.svg)](https://codeclimate.com/github/tangrufus/jwt-auth_zero)
6
- [![Gemnasium Status](https://gemnasium.com/tangrufus/jwt-auth_zero.svg)](https://gemnasium.com/tangrufus/jwt-auth_zero)
7
- [![Travis CI Status](https://secure.travis-ci.org/tangrufus/jwt-auth_zero.svg)](https://travis-ci.org/tangrufus/jwt-auth_zero)
8
- [![Patreon](https://img.shields.io/badge/patreon-donate-brightgreen.svg)](https://www.patreon.com/)
9
-
4
+ [![Code Climate GPA](https://codeclimate.com/github/TangRufus/jwt-auth_zero.svg)](https://codeclimate.com/github/TangRufus/jwt-auth_zero)
5
+ [![Code Climate Coverage](https://codeclimate.com/github/TangRufus/jwt-auth_zero/coverage.svg)](https://codeclimate.com/github/TangRufus/jwt-auth_zero)
6
+ [![Dependency Status](https://gemnasium.com/badges/github.com/TangRufus/jwt-auth_zero.svg)](https://gemnasium.com/github.com/TangRufus/jwt-auth_zero)
7
+ [![Travis CI Status](https://secure.travis-ci.org/TangRufus/jwt-auth_zero.svg)](https://travis-ci.org/TangRufus/jwt-auth_zero)
8
+ [![Patreon](https://img.shields.io/badge/patreon-donate-brightgreen.svg)](https://www.patreon.com/tangrufus)
10
9
 
11
10
 
12
11
  <!-- Tocer[start]: Auto-generated, don't remove. -->
@@ -39,7 +38,7 @@
39
38
 
40
39
  For a secure install, type the following (recommended):
41
40
 
42
- gem cert --add <(curl -Ls https://raw.github.com/TangRufus/jwt-auth_zero/blob/master/certs/tangrufus.pem)
41
+ gem cert --add <(curl -Ls https://raw.githubusercontent.com/TangRufus/jwt-auth_zero/master/certs/tangrufus.pem)
43
42
  gem install jwt-auth_zero --trust-policy MediumSecurity
44
43
 
45
44
  NOTE: A HighSecurity trust policy would be best but MediumSecurity enables signed gem verification while
@@ -75,7 +74,7 @@ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
75
74
 
76
75
  # License
77
76
 
78
- Copyright (c) 2016 [Tang Rufus](mailto:tangrufus@gmail.com).
77
+ Copyright (c) 2016 [Tang Rufus](mailto:TangRufus@gmail.com).
79
78
  Read the [LICENSE](LICENSE.md) for details.
80
79
 
81
80
  # History
@@ -85,4 +84,4 @@ Built with [Gemsmith](https://github.com/bkuhlmann/gemsmith).
85
84
 
86
85
  # Credits
87
86
 
88
- Developed by [Tang Rufus](https://www.github.com/tangrufus) at [Hearda](https://www.hearda.com).
87
+ Developed by [Tang Rufus](https://www.github.com/TangRufus) at [Hearda](https://www.hearda.com).
@@ -6,7 +6,7 @@ module JWT
6
6
  extend Forwardable
7
7
 
8
8
  attr_writer :configuration
9
- def_delegators :@configuration, :client_secret, :decode_options
9
+ def_delegators :configuration, :client_secret, :decode_options
10
10
 
11
11
  def configuration
12
12
  @configuration ||= Configuration.new
@@ -9,7 +9,7 @@ module JWT
9
9
  end
10
10
 
11
11
  def self.version
12
- '0.2.0'
12
+ '0.2.1'
13
13
  end
14
14
  end
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jwt-auth_zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tang Rufus
@@ -30,7 +30,7 @@ cert_chain:
30
30
  DVxnVfAOCAf0EB5NYjdPLfQMjzcQ/3NnCnz6bojdioEweja0cAe/N7KVT/53//5P
31
31
  gbYkHKhrKfuyt6qFGj4ucKISu8bYg3rh
32
32
  -----END CERTIFICATE-----
33
- date: 2016-10-25 00:00:00.000000000 Z
33
+ date: 2016-10-26 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: jwt
metadata.gz.sig CHANGED
Binary file