authlete 0.1.2 → 0.1.3

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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OWIyYTAxYmQyNTRlM2I3MTI0NTJkYTdhZmRmZGM3YTNiYTRiZjM4Nw==
5
- data.tar.gz: !binary |-
6
- ODNhM2RkZGY5ZjA4MzlhZmFlOTg4MjcxYjNlZTJjYzMyYTIxYTU2Yw==
2
+ SHA1:
3
+ metadata.gz: 36c41b9006e7ea745c49e4593cdd6048caa33af7
4
+ data.tar.gz: 142752f0edb8f3ac7fb098ba2fce250c596cbca4
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MThiYzIyNmYxNDMwM2E5M2Q4Nzc2MjJiNTBmNDNjMzA5MmY2Y2I2ZGNkM2Jh
10
- NTA2MDFhNGU2MDZlMTliMDgzNzA2N2I2NDQ4OTA2MjIwMWFiZWU1NjAyNTYw
11
- MGFmYTY1MzgwOTYzMTU4ODk0OGFjYzhjNzQwMmZhNTI5MDg0NzE=
12
- data.tar.gz: !binary |-
13
- NzZhNzA4YzFmZmNlMTY3M2Y3MjI0NzU3NDM3Y2FkMWE0ZTgxNzRlMjRkNTU4
14
- Y2M2NzE5MWM2MWExYjQ5YzNhZGNlYjRjNTE0NWE1NzgxYzRmM2FhMTg2OGZm
15
- ZWYwOWYyYTZkMzIwMjZjNWI0OWUzNzcwM2ViODcwMTI2YjBkNTY=
6
+ metadata.gz: 0acfb9f9641c6b1af678bf3bdc27f13371d37ed276a867e57b9aec04ada80a291e8250d14d4986539956875ad59d224864d2d2668a2b59d76e061338ca532bc1
7
+ data.tar.gz: 7729779a9f1e2db4a8687f951e24f3c22c79452246b51c4f4e460d4a8ae89c59e42fb9a08f5cfe8a6840586704d6cf348dd50b9b3d6f95a0f85af15aae969055
data/.gitignore CHANGED
@@ -12,3 +12,4 @@
12
12
  *.o
13
13
  *.a
14
14
  mkmf.log
15
+ /.idea/
@@ -61,6 +61,11 @@ module Authlete
61
61
  alias_method :authorization_endpoint, :authorizationEndpoint
62
62
  alias_method :authorization_endpoint=, :authorizationEndpoint=
63
63
 
64
+ # The timestamp at which the service was created. (Integer)
65
+ attr_accessor :createdAt
66
+ alias_method :created_at, :createdAt
67
+ alias_method :created_at=, :createdAt=
68
+
64
69
  # The description of this service. (String)
65
70
  attr_accessor :description
66
71
 
@@ -80,6 +85,11 @@ module Authlete
80
85
  alias_method :jwks_uri, :jwksUri
81
86
  alias_method :jwks_uri=, :jwksUri=
82
87
 
88
+ # The timestamp at which the service was modified. (Integer)
89
+ attr_accessor :modifiedAt
90
+ alias_method :modified_at, :modifiedAt
91
+ alias_method :modified_at=, :modifiedAt=
92
+
83
93
  # The service number. (Integer)
84
94
  attr_accessor :number
85
95
 
@@ -88,6 +98,9 @@ module Authlete
88
98
  alias_method :policy_uri, :policyUri
89
99
  alias_method :policy_uri=, :policyUri=
90
100
 
101
+ # The service properties. (Array)
102
+ attr_accessor :properties
103
+
91
104
  # The duration of refresh tokens in seconds. (Integer)
92
105
  attr_accessor :refreshTokenDuration
93
106
  alias_method :refresh_token_duration, :refreshTokenDuration
@@ -206,8 +219,8 @@ module Authlete
206
219
 
207
220
  # Integer attributes.
208
221
  INTEGER_ATTRIBUTES = ::Set.new([
209
- :accessTokenDuration, :apiKey, :idTokenDuration, :number,
210
- :refreshTokenDuration, :serviceOwnerNumber
222
+ :accessTokenDuration, :apiKey, :createdAt, :idTokenDuration,
223
+ :modifiedAt, :number, :refreshTokenDuration, :serviceOwnerNumber
211
224
  ])
212
225
 
213
226
  # String attributes.
@@ -221,7 +234,7 @@ module Authlete
221
234
 
222
235
  # String array attributes.
223
236
  STRING_ARRAY_ATTRIBUTES = ::Set.new([
224
- :supportedAcrs, :supportedClaimLocales, :supportedClaims,
237
+ :properties, :supportedAcrs, :supportedClaimLocales, :supportedClaims,
225
238
  :supportedClaimTypes, :supportedDisplays, :supportedGrantTypes,
226
239
  :supportedResponseTypes, :supportedSnses, :supportedTokenAuthMethods,
227
240
  :supportedUiLocales
@@ -237,8 +250,10 @@ module Authlete
237
250
  :authentication_callback_api_secret => :authenticationCallbackApiSecret,
238
251
  :authentication_callback_endpoint => :authenticationCallbackEndpoint,
239
252
  :authorization_endpoint => :authorizationEndpoint,
253
+ :created_at => :createdAt,
240
254
  :id_tokn_duration => :idTokenDuration,
241
255
  :jwks_uri => :jwksUri,
256
+ :modified_at => :modifiedAt,
242
257
  :policy_uri => :policyUri,
243
258
  :refresh_token_duration => :refreshTokenDuration,
244
259
  :registration_endpoint => :registrationEndpoint,
@@ -1,3 +1,3 @@
1
1
  module Authlete
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlete
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiko Kawasaki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-08 00:00:00.000000000 Z
11
+ date: 2015-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.7.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.7.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.7'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.7'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '10.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
55
  description: A library for Authlete Web APIs. See https://www.authlete.com/authlete_web_apis.html
@@ -60,7 +60,13 @@ executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - .gitignore
63
+ - ".gitignore"
64
+ - ".idea/authlete-ruby-gem.iml"
65
+ - ".idea/encodings.xml"
66
+ - ".idea/misc.xml"
67
+ - ".idea/modules.xml"
68
+ - ".idea/scopes/scope_settings.xml"
69
+ - ".idea/vcs.xml"
64
70
  - Gemfile
65
71
  - LICENSE.txt
66
72
  - README.md
@@ -90,12 +96,12 @@ require_paths:
90
96
  - lib
91
97
  required_ruby_version: !ruby/object:Gem::Requirement
92
98
  requirements:
93
- - - ! '>='
99
+ - - ">="
94
100
  - !ruby/object:Gem::Version
95
101
  version: '0'
96
102
  required_rubygems_version: !ruby/object:Gem::Requirement
97
103
  requirements:
98
- - - ! '>='
104
+ - - ">="
99
105
  - !ruby/object:Gem::Version
100
106
  version: '0'
101
107
  requirements: []