dotloop_api 3.0.1 → 3.0.2
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
- checksums.yaml.gz.sig +0 -0
- data/.rubocop.yml +8 -8
- data/dotloop_api.gemspec +1 -1
- data/lib/dotloop_api/auth.rb +1 -1
- data/lib/dotloop_api/models/profile/loop/folder.rb +1 -1
- data/lib/dotloop_api/models/profile/loop.rb +1 -1
- data/lib/dotloop_api/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +5 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0eafe1134fdf45e62e22bf462cc2744955afb44e4847b1ce4574ccb45a22e79
|
|
4
|
+
data.tar.gz: 266985c269f86294ab04543bf4a5ba656c2b79bb1e216cce0ccf72a41fc70a71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 017e88a5bc0c4b21162df2b629f8dca1f5d7606dbb7d85fd01633dfc9fa26ecf10310b8024a77558f1c25e5542eadf078e5fb8490fcde102e239abab8b690eb3
|
|
7
|
+
data.tar.gz: 1e176eb77895b391564bdcee78e82f4e87a727a3c163d11adf66e93500933f4411cfb6dccb2dcd736880d195ddc3b6014c6f7b4c8dddde21523ab49dd670ae13
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.rubocop.yml
CHANGED
|
@@ -14,14 +14,6 @@ Documentation:
|
|
|
14
14
|
Metrics/BlockLength:
|
|
15
15
|
Exclude:
|
|
16
16
|
- 'spec/**/*.rb'
|
|
17
|
-
Metrics/LineLength:
|
|
18
|
-
Max: 120
|
|
19
|
-
Exclude:
|
|
20
|
-
- 'spec/**/*.rb'
|
|
21
|
-
AllowURI: true
|
|
22
|
-
URISchemes:
|
|
23
|
-
- http
|
|
24
|
-
- https
|
|
25
17
|
Metrics/MethodLength:
|
|
26
18
|
CountComments: false
|
|
27
19
|
Max: 15
|
|
@@ -33,3 +25,11 @@ Style/Alias:
|
|
|
33
25
|
EnforcedStyle: prefer_alias_method
|
|
34
26
|
Layout/EmptyLineAfterGuardClause:
|
|
35
27
|
Enabled: False
|
|
28
|
+
Layout/LineLength:
|
|
29
|
+
Max: 120
|
|
30
|
+
Exclude:
|
|
31
|
+
- 'spec/**/*.rb'
|
|
32
|
+
AllowURI: true
|
|
33
|
+
URISchemes:
|
|
34
|
+
- http
|
|
35
|
+
- https
|
data/dotloop_api.gemspec
CHANGED
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
|
|
|
27
27
|
spec.require_paths = ['lib']
|
|
28
28
|
|
|
29
29
|
spec.add_runtime_dependency 'activesupport', '~> 7'
|
|
30
|
-
spec.add_runtime_dependency 'httparty', '~> 0.
|
|
30
|
+
spec.add_runtime_dependency 'httparty', '~> 0.21'
|
|
31
31
|
spec.add_runtime_dependency 'plissken', '~> 2'
|
|
32
32
|
spec.add_runtime_dependency 'virtus', '~> 1.0'
|
|
33
33
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
data/lib/dotloop_api/auth.rb
CHANGED
|
@@ -8,7 +8,7 @@ module DotloopApi
|
|
|
8
8
|
attribute :id, Integer
|
|
9
9
|
attribute :created, Time
|
|
10
10
|
attribute :updated, Time
|
|
11
|
-
attribute :documents, Array[DotloopApi::Models::Profile::Loop::Folder::Document]
|
|
11
|
+
attribute :documents, Array[DotloopApi::Models::Profile::Loop::Folder::Document] # rubocop:disable Style/RedundantArrayConstructor
|
|
12
12
|
attr_accessor :client, :profile_id, :loop_id
|
|
13
13
|
|
|
14
14
|
def document_list
|
|
@@ -24,7 +24,7 @@ module DotloopApi
|
|
|
24
24
|
attribute :transaction_type
|
|
25
25
|
attribute :updated
|
|
26
26
|
attribute :details, DotloopApi::Models::Profile::Loop::Detail
|
|
27
|
-
attribute :all_participants, Array[DotloopApi::Models::Profile::Loop::Participant]
|
|
27
|
+
attribute :all_participants, Array[DotloopApi::Models::Profile::Loop::Participant] # rubocop:disable Style/RedundantArrayConstructor
|
|
28
28
|
attr_accessor :client
|
|
29
29
|
|
|
30
30
|
def activities
|
data/lib/dotloop_api/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dotloop_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Loft47
|
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
|
34
34
|
UyzDcZlUIYsg0YEfJoAEA8+i0f7YdJoCNefHMv0cfBZ7fb1+QVd+CZMW0MjdOpMR
|
|
35
35
|
BGRKAowqGARaXExDn/ww/1javLv4ss7RKZOw7Q==
|
|
36
36
|
-----END CERTIFICATE-----
|
|
37
|
-
date: 2023-
|
|
37
|
+
date: 2023-12-06 00:00:00.000000000 Z
|
|
38
38
|
dependencies:
|
|
39
39
|
- !ruby/object:Gem::Dependency
|
|
40
40
|
name: activesupport
|
|
@@ -56,14 +56,14 @@ dependencies:
|
|
|
56
56
|
requirements:
|
|
57
57
|
- - "~>"
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: '0.
|
|
59
|
+
version: '0.21'
|
|
60
60
|
type: :runtime
|
|
61
61
|
prerelease: false
|
|
62
62
|
version_requirements: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
64
|
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: '0.
|
|
66
|
+
version: '0.21'
|
|
67
67
|
- !ruby/object:Gem::Dependency
|
|
68
68
|
name: plissken
|
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
168
168
|
- !ruby/object:Gem::Version
|
|
169
169
|
version: '0'
|
|
170
170
|
requirements: []
|
|
171
|
-
rubygems_version: 3.4.
|
|
171
|
+
rubygems_version: 3.4.22
|
|
172
172
|
signing_key:
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: DotloopApi library
|
metadata.gz.sig
CHANGED
|
Binary file
|