doorloop 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a9ac995291e0df7e8b3e3ada12ec0823d5371667ffd79639218058bd2816954
4
- data.tar.gz: 8793a7c08b2d83d84e81c6dc0a363d76be981ec6a40bc8f6919773c7f9d2605d
3
+ metadata.gz: cf4907a1cc4cc331348845e0cc288c5aee7e9e088b5f7415fe38f2f21909744d
4
+ data.tar.gz: a1f2102f74a78fa5876c68ccb888eb2a696522c816e1012e016ef34d8b525408
5
5
  SHA512:
6
- metadata.gz: ca8cab8bca74f9c3f6f0ecb996996d7595be0da911e5ad44c47596fa27c380e1ffa605f27da9ddcb4d3432601f5727593a6593476cbcb6286710bfffeb83b92d
7
- data.tar.gz: 0fd1a0b37a43ecf046ec970f8be50ffde32bce40efc6071cb62142685be2b0c56b1054aaa63ef7e4636be2dc2365f66fd4a9b470686aaa9d2a01545e0120572e
6
+ metadata.gz: 122ea5ac0627685a2694bd91e1ab65de9d4ccea695df3c7c7bfab3a7b4d1ef001c09b825b75315f85f1cf70faa7afb884651a4caa96f8fca1247b40052e17c82
7
+ data.tar.gz: e7b27a8ee53354cd2aec273001cabe4d810a5359a7fbb63c07e7c60085aad493c9c4dbad91e1724e1699cb7eae1ebe9213486afb5751a797038bce3a0fdcba00
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doorloop (0.1.0)
4
+ doorloop (0.1.1)
5
5
  rest-client (~> 2.0)
6
6
 
7
7
  GEM
@@ -15,7 +15,7 @@ module DoorLoop
15
15
  @client.post('accounts', params)
16
16
  end
17
17
 
18
- def retrieve(id)
18
+ def find(id)
19
19
  @client.get("accounts/#{id}")
20
20
  end
21
21
 
@@ -99,7 +99,7 @@ module DoorLoop
99
99
  Expenses.new(self)
100
100
  end
101
101
 
102
- def vender_bills
102
+ def vendor_bills
103
103
  VendorBills.new(self)
104
104
  end
105
105
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('communications', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("communications/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('expenses', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("expenses/#{id}")
19
19
  end
20
20
 
@@ -16,7 +16,7 @@ module DoorLoop
16
16
  @client.get('files', options)
17
17
  end
18
18
 
19
- def retrieve(id)
19
+ def find(id)
20
20
  @client.get("files/#{id}")
21
21
  end
22
22
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('lease-charges', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("lease-charges/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('lease-credits', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("lease-credits/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('lease-payments', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("lease-payments/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('lease-reversed-payments', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("lease-reversed-payments/#{id}")
19
19
  end
20
20
 
@@ -10,7 +10,7 @@ module DoorLoop
10
10
  @client.get('leases', options)
11
11
  end
12
12
 
13
- def retrieve(id)
13
+ def find(id)
14
14
  @client.get("leases/#{id}")
15
15
  end
16
16
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('notes', params)
15
15
  end
16
16
 
17
- def retrieve(task_id)
17
+ def find(task_id)
18
18
  @client.get("notes/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('owners', params)
15
15
  end
16
16
 
17
- def retrieve(task_id)
17
+ def find(id)
18
18
  @client.get("owners/#{id}")
19
19
  end
20
20
 
@@ -10,7 +10,7 @@ module DoorLoop
10
10
  @client.get('property-groups', options)
11
11
  end
12
12
 
13
- def retrieve(id)
13
+ def find(id)
14
14
  @client.get("property-groups/#{id}")
15
15
  end
16
16
  end
@@ -10,7 +10,7 @@ module DoorLoop
10
10
  @client.get('properties', options)
11
11
  end
12
12
 
13
- def retrieve(id)
13
+ def find(id)
14
14
  @client.get("properties/#{id}")
15
15
  end
16
16
  end
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('tasks', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("tasks/#{id}")
19
19
  end
20
20
 
@@ -6,7 +6,7 @@ module DoorLoop
6
6
  @client = client
7
7
  end
8
8
 
9
- def retrieve(id)
9
+ def find(id)
10
10
  @client.get("tenants/#{id}")
11
11
  end
12
12
 
@@ -10,7 +10,7 @@ module DoorLoop
10
10
  @client.get('units', options)
11
11
  end
12
12
 
13
- def retrieve(id)
13
+ def find(id)
14
14
  @client.get("units/#{id}")
15
15
  end
16
16
  end
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.get('users', options)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("users/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('vendor-bills', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("vendor-bills/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('vendor-credits', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("vendor-credits/#{id}")
19
19
  end
20
20
 
@@ -14,7 +14,7 @@ module DoorLoop
14
14
  @client.post('vendors', params)
15
15
  end
16
16
 
17
- def retrieve(id)
17
+ def find(id)
18
18
  @client.get("vendors/#{id}")
19
19
  end
20
20
 
@@ -1,3 +1,3 @@
1
1
  module Doorloop
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doorloop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MezbahAlam
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-27 00:00:00.000000000 Z
11
+ date: 2024-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  - !ruby/object:Gem::Version
135
135
  version: '0'
136
136
  requirements: []
137
- rubygems_version: 3.4.19
137
+ rubygems_version: 3.3.26
138
138
  signing_key:
139
139
  specification_version: 4
140
140
  summary: A simple wrapper for the DoorLoop API