devise-token_authenticatable 0.2.0.beta1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/devise/token_authenticatable/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b47befaedd8c8b6db6dc55464494d33a453a41a9
|
|
4
|
+
data.tar.gz: 5ce4b4a3148a28cc2c79928e32896bab615f322d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fcc8f5101931f8b731f0c429f3ad4f31d7c35bd684588e1d93396b5217935f1ee073ade0e7cff8d1ce94e18dc6995aacc15eef42ecf879afbe01e7ee0bd12da
|
|
7
|
+
data.tar.gz: 5b73d3a5e143c2f453675be9f1007f094d0a955c824dc0480eb3aec4c75f54c923db4254de6d9d231c5c3f7abb1a8bdb2f5352d09887fd2cb96994d723db088d
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/devise-token_authenticatable) [](https://travis-ci.org/baschtl/devise-token_authenticatable) [](https://codeclimate.com/github/baschtl/devise-token_authenticatable)
|
|
4
4
|
|
|
5
|
-
This gem provides the extracted Token Authenticatable module of devise. It includes the functionality that was also in [version 3.1.2](https://github.com/plataformatec/devise/tree/v3.1.2) of devise. With the inclusion of this module a user is able to sign in via an authentication token. This token can be given via a query string or HTTP Basic Authentication. This gem requires devise 3.
|
|
5
|
+
This gem provides the extracted Token Authenticatable module of devise. It includes the functionality that was also in [version 3.1.2](https://github.com/plataformatec/devise/tree/v3.1.2) of devise. With the inclusion of this module a user is able to sign in via an authentication token. This token can be given via a query string or HTTP Basic Authentication. This gem requires devise 3.3.0 or newer (see the hint below for older devise versions).
|
|
6
6
|
|
|
7
7
|
Use this gem as a starting point for your own token authentication mechanism for devise. Furthermore, if you need token authentication in connection with newer devise releases this gem might be an appropriate solution, too.
|
|
8
8
|
|
|
@@ -20,9 +20,9 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
$ gem install devise-token_authenticatable
|
|
22
22
|
|
|
23
|
-
### Users of
|
|
23
|
+
### Users of devise earlier than 3.3.0
|
|
24
24
|
|
|
25
|
-
Please, use version 0.1.0 of this gem. All later versions do not support
|
|
25
|
+
Please, use version 0.1.0 of this gem. All later versions do not support devise < 3.3.0.
|
|
26
26
|
|
|
27
27
|
## Usage
|
|
28
28
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise-token_authenticatable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.0
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Oelke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-08-
|
|
11
|
+
date: 2014-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: devise
|
|
@@ -196,9 +196,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
196
196
|
version: '0'
|
|
197
197
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
198
198
|
requirements:
|
|
199
|
-
- - "
|
|
199
|
+
- - ">="
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
|
-
version:
|
|
201
|
+
version: '0'
|
|
202
202
|
requirements: []
|
|
203
203
|
rubyforge_project:
|
|
204
204
|
rubygems_version: 2.2.2
|