api_guard_grape 0.5.3 → 0.5.4

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
  SHA256:
3
- metadata.gz: 4381e38e78427908ffe9ee0597a0ce30393d2495fc21054d8457fc51726cbc96
4
- data.tar.gz: dc228c65bcdc551b54074d0bd09afafe261009a878a201da48dd783a14c3dc44
3
+ metadata.gz: e0f059f11ee3c6b9387bc7492027ee5a521110cd13ffff5367e99c19210546c6
4
+ data.tar.gz: 6fcd6cf23fe46e68400ab26ca485ac16439a1f1ec2d0357379249842ba8c628b
5
5
  SHA512:
6
- metadata.gz: c507254d38f3d3f71fa02ab3c973e1b7eaa06f2adc75214be6bacc97f2a4bcf34b1e66e22b28e1139808ea3a2c70db8e86553f8bd98d7470a88c659a5b8508ca
7
- data.tar.gz: 8f602a2ac573fabe7bed9ff8a6206ad147e6d683bbb825942f767e4c7acb112c80a96b32d2fa108b91811739a5d2514f217a7ed99c06c2c0b7486f6735eaa271
6
+ metadata.gz: e5a6532eb9cbb2c26d878822158ee04e17146f8896109620beb573ef7f6bb29e122dd5d1bac8e63a263de4dabd3fe0563df0bfb1db58d0cf3d5c1a26fb00081a
7
+ data.tar.gz: 335d7d8ae4baecf1df445ba7d597142ffb7344658340cb8bde36f36bc82a9a8795ac611f2846159e648e3a357c3ed4e856f59ac7264a278a9ff0b7983bffd5b6
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # API Guard
2
2
 
3
- [![Version](https://img.shields.io/gem/v/api_guard_grape.svg?color=green)](https://rubygems.org/gems/api_guard_grape_grape)
4
- [![Build Status](https://github.com/prateeksinghbundela/api_guard_grape_grape/workflows/build/badge.svg?branch=master)](https://github.com/prateeksinghbundela/api_guard_grape_grape/actions?query=workflow%3Abuild)
5
- [![Maintainability](https://api.codeclimate.com/v1/badges/ced3e74a26a66ed915cb/maintainability)](https://codeclimate.com/github/prateeksinghbundela/api_guard_grape_grape/maintainability)
3
+ [![Version](https://img.shields.io/gem/v/api_guard_grape.svg?color=green)](https://rubygems.org/gems/api_guard_grape)
4
+ [![Build Status](https://github.com/prateeksinghbundela/api_guard_grape/workflows/build/badge.svg?branch=master)](https://github.com/prateeksinghbundela/api_guard_grape/actions?query=workflow%3Abuild)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/ced3e74a26a66ed915cb/maintainability)](https://codeclimate.com/github/prateeksinghbundela/api_guard_grape/maintainability)
6
6
 
7
7
 
8
8
  [JSON Web Token (JWT)](https://jwt.io/) based authentication solution with token refreshing & blacklisting for APIs
@@ -38,8 +38,8 @@ for cryptographic signing.
38
38
  * [Override finding resource](#override-finding-resource)
39
39
  * [Customizing / translating response messages using I18n](#customizing--translating-response-messages-using-i18n)
40
40
  * [Testing](#testing)
41
- * [Wiki](https://github.com/prateeksinghbundela/api_guard_grape_grape/wiki)
42
- * [Using API Guard with Devise](https://github.com/prateeksinghbundela/api_guard_grape_grape/wiki/Using-API-Guard-with-Devise)
41
+ * [Wiki](https://github.com/prateeksinghbundela/api_guard_grape/wiki)
42
+ * [Using API Guard with Devise](https://github.com/prateeksinghbundela/api_guard_grape/wiki/Using-API-Guard-with-Devise)
43
43
  * [Contributing](#contributing)
44
44
  * [License](#license)
45
45
 
@@ -82,7 +82,7 @@ $ rails db:migrate
82
82
  Add [has_secure_password](https://api.rubyonrails.org/classes/ActiveModel/SecurePassword/ClassMethods.html#method-i-has_secure_password)
83
83
  in `User` model for password authentication.
84
84
 
85
- > Refer [this Wiki](https://github.com/prateeksinghbundela/api_guard_grape_grape/wiki/Using-API-Guard-with-Devise#authentication) for configuring API Guard authentication to work with Devise instead of using `has_secure_password`.
85
+ > Refer [this Wiki](https://github.com/prateeksinghbundela/api_guard_grape/wiki/Using-API-Guard-with-Devise#authentication) for configuring API Guard authentication to work with Devise instead of using `has_secure_password`.
86
86
 
87
87
  ```ruby
88
88
  class User < ApplicationRecord
@@ -114,7 +114,7 @@ api_guard_grape_routes for: 'users'
114
114
 
115
115
  This will generate default routes such as sign up, sign in, sign out, token refresh, password change for User.
116
116
 
117
- > Refer [this Wiki](https://github.com/prateeksinghbundela/api_guard_grape_grape/wiki/Using-API-Guard-with-Devise#routes) for configuring API Guard routes to work with Devise.
117
+ > Refer [this Wiki](https://github.com/prateeksinghbundela/api_guard_grape/wiki/Using-API-Guard-with-Devise#routes) for configuring API Guard routes to work with Devise.
118
118
 
119
119
  ### Registration
120
120
 
@@ -633,7 +633,7 @@ en:
633
633
  ```
634
634
 
635
635
  You can find the complete list of available keys in this file:
636
- https://github.com/prateeksinghbundela/api_guard_grape_grape/blob/master/config/locales/en.yml
636
+ https://github.com/prateeksinghbundela/api_guard_grape/blob/master/config/locales/en.yml
637
637
 
638
638
  ## Testing
639
639
 
@@ -680,7 +680,7 @@ Then, you can set the access token and refresh token in appropriate request head
680
680
 
681
681
  ## Contributing
682
682
 
683
- Bug reports and pull requests are welcome on GitHub at https://github.com/prateeksinghbundela/api_guard_grape_grape.
683
+ Bug reports and pull requests are welcome on GitHub at https://github.com/prateeksinghbundela/api_guard.
684
684
  This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
685
685
  the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
686
686
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ApiGuardGrape
4
- VERSION = '0.5.3'
4
+ VERSION = '0.5.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_guard_grape
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prateek Singh