authrocket 1.0.0 → 1.0.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 +4 -4
- data/README.md +1 -1
- data/authrocket.gemspec +2 -2
- data/lib/authrocket/api/version.rb +1 -1
- data/lib/authrocket/user.rb +2 -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: 6ea0d4f926fa7c4fe5f7deca66d580e541d29b76
|
|
4
|
+
data.tar.gz: e95dd818cdde5ce2236f21ebc191828e9677fee7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df95ed7c8b7ecab959ab1530a5a47881118092232b731547ac04891a6dabf45e64aa5b4aea3825cfe44f3d09bb7f3191f66956a339a7ae1f2c1b3e1ac4a36792
|
|
7
|
+
data.tar.gz: 816f0cc47f1dd9c25fe30650c47f8be799e46b50144fc2945530e371dd3f02c612ab9403207e88637f55230cb6735604144d0367561d95454e1aa5af35014b7a
|
data/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Let's add a couple methods to your Application Controller, substituting the corr
|
|
|
53
53
|
|
|
54
54
|
private
|
|
55
55
|
|
|
56
|
-
LOGIN_URL = 'https://sample.e1.loginrocket.com/
|
|
56
|
+
LOGIN_URL = 'https://sample.e1.loginrocket.com/'
|
|
57
57
|
# This should be your app's own LoginRocket URL, as
|
|
58
58
|
# shown in the Login Policy details.
|
|
59
59
|
|
data/authrocket.gemspec
CHANGED
|
@@ -7,10 +7,10 @@ Gem::Specification.new do |gem|
|
|
|
7
7
|
gem.name = "authrocket"
|
|
8
8
|
gem.version = AuthRocket::VERSION
|
|
9
9
|
gem.authors = ["thomas morgan"]
|
|
10
|
-
gem.email = ["
|
|
10
|
+
gem.email = ["hello@authrocket.com"]
|
|
11
11
|
gem.description = %q{AuthRocket client for Ruby.}
|
|
12
12
|
gem.summary = %q{AuthRocket client for Ruby}
|
|
13
|
-
gem.homepage =
|
|
13
|
+
gem.homepage = 'https://authrocket.com/'
|
|
14
14
|
gem.license = 'MIT'
|
|
15
15
|
|
|
16
16
|
gem.files = `git ls-files`.split($/)
|
data/lib/authrocket/user.rb
CHANGED
|
@@ -9,7 +9,8 @@ module AuthRocket
|
|
|
9
9
|
attr :user_type, :username, :state, :reference
|
|
10
10
|
attr :first_name, :last_name, :password, :password_confirmation
|
|
11
11
|
attr :name, :api_key, :email
|
|
12
|
-
attr_datetime :created_at, :
|
|
12
|
+
attr_datetime :created_at, :last_login_at
|
|
13
|
+
attr_datetime :last_login_on # deprecated
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
def orgs
|
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.0.
|
|
4
|
+
version: 1.0.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: 2014-
|
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ncore
|
|
@@ -54,7 +54,7 @@ dependencies:
|
|
|
54
54
|
version: '0'
|
|
55
55
|
description: AuthRocket client for Ruby.
|
|
56
56
|
email:
|
|
57
|
-
-
|
|
57
|
+
- hello@authrocket.com
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
@@ -78,7 +78,7 @@ files:
|
|
|
78
78
|
- lib/authrocket/realm.rb
|
|
79
79
|
- lib/authrocket/user.rb
|
|
80
80
|
- lib/authrocket/user_token.rb
|
|
81
|
-
homepage: https://
|
|
81
|
+
homepage: https://authrocket.com/
|
|
82
82
|
licenses:
|
|
83
83
|
- MIT
|
|
84
84
|
metadata: {}
|