authrocket 1.3.0 → 1.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f59945f00ec3c5935d070f1011f55b384227f21a
4
- data.tar.gz: b14d874dd31885358b4127c6c6d39bc2d533faac
3
+ metadata.gz: b17e31eeb3943dc100783d38ec98995fdc4a486a
4
+ data.tar.gz: ec7c9240dccd849b7c35a221c52a333bab0d4cc3
5
5
  SHA512:
6
- metadata.gz: 6e694cddf853fc34fcef928cf6b7d41c22a158674779e1f2a1a24024bc3a222a3581e915c4c8c10ae0105826f5842a70f1472292c3647342965cc83dee4b1f2e
7
- data.tar.gz: cee76d864e476184378695b702c9d77cac710f81463a2e1cb7ada82ad9348c6b6579184a0149f41a9155a4e1621042b0a394c226a8a77818cc966935082c4e69
6
+ metadata.gz: 55f52ad66472cfbea2911dec7bf6f0dcd47d80aa75701e44603bedab9677fed84c9c1335b027b9cbdcd6af7568fb8468b6dd61c573943403b967859d5e0dd77c
7
+ data.tar.gz: 75bd5dbe7a919f28853aa2f4260042c0676ec05cfa8d75e3e65ea6d8e9b755e10497b6e2c24b46aa77968613a1e370a4a30a6f46fad88d696de2f19d5a419390
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ #### 1.3.1
2
+ - Add Realm#api_key_minutes
3
+ - Add Session#client
4
+
1
5
  #### 1.3.0
2
6
  - Add Session resource
3
7
  - Deprecate Event.validate_token - Replaced by Session.from_token and Session.find
@@ -1,3 +1,3 @@
1
1
  module AuthRocket
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'
3
3
  end
@@ -9,7 +9,7 @@ module AuthRocket
9
9
  has_many :orgs
10
10
  has_many :users
11
11
 
12
- attr :api_key_policy, :api_key_prefix, :custom, :name # :api_key_minutes
12
+ attr :api_key_minutes, :api_key_policy, :api_key_prefix, :custom, :name
13
13
  attr :jwt_data, :require_unique_emails, :session_minutes, :session_type
14
14
  attr :state, :username_validation_human
15
15
  attr :jwt_secret # readonly
@@ -4,7 +4,7 @@ module AuthRocket
4
4
 
5
5
  belongs_to :user
6
6
 
7
- attr :ip
7
+ attr :client, :ip
8
8
  attr :token # readonly
9
9
  attr_datetime :created_at, :expires_at # readonly
10
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authrocket
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - thomas morgan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-16 00:00:00.000000000 Z
11
+ date: 2015-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ncore