hoalife 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 898cbe254f04af0df5d1e3edb7d4ef51ccccee6400f7b56ac5b65a1fa0fa16ec
4
- data.tar.gz: 281fe3403aa5d32b2018f05afc369d29eb8f246a710d896dac786cec58bb2dff
3
+ metadata.gz: 6e9fe73cbcf41218fdb70092c76c53d2d246d6e7602bc5626e6bb886064c7ca5
4
+ data.tar.gz: f946d9c751278d2d03b5312c4106a4bd9a962a1c2f25b81dd2cd275cc38ac704
5
5
  SHA512:
6
- metadata.gz: d23041cd85f41453214cbef0e954e1ca1de2d3c6942f91deac1708c281e0654ff981851c4ab306c9928de9f04c4954f0096f69f4e4a84f500544838f786913b2
7
- data.tar.gz: 455a8251de3cbc64b257ffa28ccc9176adfe330077c0d153794d51dd1410fa22df8a168c5bb039bc2b4f9091095b8c713b47a355c2e4dc4a155e70e55723da8a
6
+ metadata.gz: e1dc7e64648516ad16b4c93876956026a604bfc5d43100dfc359ab2baed6472dd1f94e27e6ce8091d36b00dd1ad44244bc4f78e273efad0b1ebf3ea9bb93cc44
7
+ data.tar.gz: efb95de9498777594e79e054afe876f22cdd3a7bab80749b35438dd9610fb070b00f7d3b1543d737f411293b00156f953adbb03735cc06f34393d2c43fd80709
data/.gitignore CHANGED
@@ -6,5 +6,6 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
- /dev_test/
10
9
  .envrc
10
+
11
+ *.gem
data/.travis.yml CHANGED
@@ -3,5 +3,7 @@ sudo: false
3
3
  language: ruby
4
4
  cache: bundler
5
5
  rvm:
6
- - 2.5.1
6
+ - 2.5.0
7
+ - 2.6.0
8
+ - 2.7.0
7
9
  before_install: gem install bundler -v 2.0.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hoalife (0.1.0)
4
+ hoalife (0.1.2)
5
5
  zeitwerk (~> 2.1)
6
6
 
7
7
  GEM
@@ -52,11 +52,11 @@ PLATFORMS
52
52
  DEPENDENCIES
53
53
  bundler (~> 2.0)
54
54
  hoalife!
55
- listen
55
+ listen (~> 3.1)
56
56
  minitest (~> 5.0)
57
57
  rake (~> 10.0)
58
58
  rubocop (~> 0.74)
59
- webmock
59
+ webmock (~> 3.6)
60
60
 
61
61
  BUNDLED WITH
62
62
  2.0.2
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Pragmatic access to the HOALife REST API. [https://docs.hoalife.com](https://docs.hoalife.com).
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/hoalife.svg)](https://badge.fury.io/rb/hoalife) [![Build Status](https://travis-ci.com/hoalife/hoalife-ruby.svg?branch=master)](https://travis-ci.com/hoalife/hoalife-ruby)
6
+
5
7
  This library seamlessly handles pagination, CRUD actions, Rate Limiting, and Error handling for you.
6
8
 
7
9
  ## Installation
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ ACCOUNT_ATTRS = %i[
4
+ mailing_street_2 external_id mailing_street_1 mailing_city mailing_state mailing_postal_code
5
+ ].freeze
6
+ original_size = HOALife::Account.count
7
+ parent = HOALife::Account.where(organizational: true).first
8
+
9
+ csv = CSV.read(File.expand_path('properties.csv', __dir__), headers: true)
10
+
11
+ associations = csv.collect { |row| row["association_name"] }.uniq
12
+
13
+ associations.each.with_index do |association, i|
14
+ attrs = {
15
+ parent_id: parent.id, escalation_threshold: i + 1, repeat_violation_strategy: 'one_month_rolling_window',
16
+ violation_lookback_period: 30, name: association
17
+ }
18
+
19
+ ACCOUNT_ATTRS.each do |attr|
20
+ attrs[attr] = hex_of(association + attr.to_s)
21
+ end
22
+
23
+ account = HOALife::Account.create(attrs)
24
+ assert(account.errors.nil?)
25
+ refute(account.id.nil?)
26
+ end
27
+
28
+ refute_equal(original_size, HOALife::Account.reload.count)
29
+
30
+ associations.each.with_index do |association, i|
31
+ assert_equal 1, HOALife::Account.where(name: association).count
32
+
33
+ find_by_external_id = HOALife::Account.where(external_id: hex_of(association + 'external_id'))
34
+ assert_equal 1, find_by_external_id.count
35
+
36
+ found = find_by_external_id.first
37
+ assert_equal i + 1, found.escalation_threshold
38
+ assert_equal parent.id, found.parent_id
39
+
40
+ found.external_id = hex_of(association + 'external_idCHANGED')
41
+ assert(found.save)
42
+
43
+ assert_equal 1, HOALife::Account.where(external_id: hex_of(association + 'external_idCHANGED')).count
44
+
45
+ assert found.destroy
46
+ end
47
+
48
+ assert_equal(original_size, HOALife::Account.reload.count)
@@ -0,0 +1,176 @@
1
+ articles = [
2
+ {
3
+ article: 1,
4
+ title: "Exterior Maintenance",
5
+ violation_types_attributes: [
6
+ {
7
+ title: "Mildew on home",
8
+ resolution_step: "Please pressure wash your home in the next 20 days",
9
+ days_to_cure: 20
10
+ },
11
+ {
12
+ title: "Faded shutters",
13
+ resolution_step: "Please paint your shutters in the next 20 days",
14
+ days_to_cure: 20
15
+ },
16
+ {
17
+ title: "Siding damaged",
18
+ resolution_step: "Please repair/replace the damaged siding in the next 20 day",
19
+ days_to_cure: 20
20
+ },
21
+ {
22
+ title: "Shutter(s) missing/damaged",
23
+ resolution_step: "Please repair/replace the missing/damaged shutter(s) in the next 20 days",
24
+ days_to_cure: 20
25
+ },
26
+ {
27
+ title: "Mailbox is damaged",
28
+ resolution_step: "Please repair/replace the damaged mailbox in the next 20 days",
29
+ days_to_cure: 20
30
+ },
31
+ {
32
+ title: "Mailbox needs to be painted",
33
+ resolution_step: "Please paint your mailbox in the next 20 days",
34
+ days_to_cure: 20
35
+ },
36
+ {
37
+ title: "Garage door damaged",
38
+ resolution_step: "Please repair/replace the garage door in the next 20 days",
39
+ days_to_cure: 20
40
+ },
41
+ {
42
+ title: "Fence damaged",
43
+ resolution_step: "Please repair the damaged fence in the next 20 days",
44
+ days_to_cure: 20
45
+ },
46
+ {
47
+ title: "Trim on home needs to be painted",
48
+ resolution_step: "Please paint the trim on your home in the next 20 days",
49
+ days_to_cure: 20
50
+ }
51
+ ]
52
+ },
53
+ {
54
+ article: 2,
55
+ title: "ARC",
56
+ violation_types_attributes: [
57
+ {
58
+ title: "Unapproved structure",
59
+ resolution_step: "Please submit an ARC form in the next 10 days",
60
+ days_to_cure: 10
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ article: 3,
66
+ title: "Improper Storage",
67
+ violation_types_attributes: [
68
+ {
69
+ title: "Basketball goal",
70
+ resolution_step: "Please properly store your basketball goal when not in use",
71
+ days_to_cure: nil
72
+ },
73
+ {
74
+ title: "Garbage can(s) in view from street",
75
+ resolution_step: "Please store your garbage can(s) from the view of the street on days not \
76
+ deemed for pickup",
77
+ days_to_cure: nil
78
+ },
79
+ {
80
+ title: "Improperly stored item(s) around home",
81
+ resolution_step: "Please properly store all item(s) in the next 5 days",
82
+ days_to_cure: 5
83
+ }
84
+ ]
85
+ },
86
+ {
87
+ article: 4,
88
+ title: "Vehicles",
89
+ violation_types_attributes: [
90
+ {
91
+ title: "Vehicle(s) parked in grass",
92
+ resolution_step: "Please refrain from parking in the grassy areas of the community",
93
+ days_to_cure: nil
94
+ },
95
+ {
96
+ title: "Inoperable vehicle at residence",
97
+ resolution_step: "Please repair/properly register your vehicle in the next 10 days",
98
+ days_to_cure: 10
99
+ },
100
+ {
101
+ title: "Trailer at residence",
102
+ resolution_step: "Please remove the trailer from the community in the next 5 days",
103
+ days_to_cure: 5
104
+ },
105
+ {
106
+ title: "Boat at residence",
107
+ resolution_step: "Please remove the boat from the community in the next 5 days",
108
+ days_to_cure: 5
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ article: 5,
114
+ title: "Lawn Maintenance",
115
+ violation_types_attributes: [
116
+ {
117
+ title: "High grass",
118
+ resolution_step: "Please mow your lawn in the next 7 days",
119
+ days_to_cure: 7
120
+ },
121
+ {
122
+ title: "Weeds in lawn",
123
+ resolution_step: "Please treat the weeds in your lawn in the next 15 days",
124
+ days_to_cure: 15
125
+ },
126
+ {
127
+ title: "Weeds in landscaping bed(s)",
128
+ resolution_step: "Please treat the weeds in your landscaping bed(s) in the next 15 days",
129
+ days_to_cure: 15
130
+ },
131
+ {
132
+ title: "Bare spot(s) in lawn",
133
+ resolution_step: "Please treat the bare spot(s) in your lawn in the next 15 days",
134
+ days_to_cure: 15
135
+ },
136
+ {
137
+ title: "Rut in lawn",
138
+ resolution_step: "Please fill in the rut in your lawn in the next 15 days",
139
+ days_to_cure: 15
140
+ },
141
+ {
142
+ title: "Overgrown Shrub(s)",
143
+ resolution_step: "Please trim your shrub(s) in the next 10 days",
144
+ days_to_cure: 10
145
+ }
146
+ ]
147
+ }
148
+ ]
149
+
150
+ parent = HOALife::Account.where(organizational: true).first
151
+ account = HOALife::Account.create(name: "Article & VT test", parent_id: parent.id)
152
+
153
+ articles.each do |article|
154
+ record = HOALife::CCRArticle.create(
155
+ article: article[:article], title: article[:title], description: "Description here!",
156
+ account_id: account.id
157
+ )
158
+
159
+ assert(record.errors.nil?)
160
+
161
+ article[:violation_types_attributes].each.with_index do |vt_attrs, i|
162
+ assert(HOALife::CCRViolationType.create(vt_attrs.merge(ccr_article_id: record.id, external_id: i)))
163
+ end
164
+
165
+ article_violation_types = HOALife::CCRViolationType.where(ccr_article_id: record.id).tap(&:all)
166
+ assert_equal article[:violation_types_attributes].size, article_violation_types.count
167
+
168
+ article[:violation_types_attributes].each.with_index do |vt, i|
169
+ violation_type = HOALife::CCRViolationType.where(external_id: i).first
170
+ assert(violation_type.destroy)
171
+ end
172
+
173
+ assert(record.destroy)
174
+ end
175
+
176
+ assert(account.destroy)
@@ -0,0 +1,109 @@
1
+ street_1,street_2,city,state,postal_code,override_geocoding,latitude,longitude,route,mailing_name,mailing_street_1,mailing_street_2,mailing_city,mailing_state,mailing_postal_code,emails,phone_numbers,external_id,association_name,association_external_id
2
+ 32369 Zackary Circles,,Macejkovicland,Kansas,49373,TRUE,27.13301551,-139.6203334,Route 2,Loni Monahan,674 Cicely Viaduct,PO BOX 819,West Halview,Maryland,39987-3596,michiko.emard@senger.com|rolf@farrell.co,1-111-379-8385 x88051,e559c8f324f7c91ad43db12c053f50f3,Pine Gardens,ASSOCIATION-1
3
+ 66052 Crona Mountains,,Lake Almeda,New Hampshire,84381-7375,TRUE,17.14400454,0.197211638,Route 2,Brittani Walsh DDS,2426 January Isle,PO BOX 2629,Joyestad,Alaska,23573,gary.willms@johnwift.com|faustino@bartell.net|mack@becker.net,(923) 396-5005 x188|(211) 779-3166 x91654|223.361.9323 x7781,6f7bb4a0b8965568058e833f68968da8,Park Heights,ASSOCIATION-1
4
+ 1359 Pouros Light,,West Issac,Oklahoma,80606,TRUE,-4.831227309,16.89669484,Route 5,Mr. Lue Bernhard,71286 Erik Cove,PO BOX 2177,Strosinfort,Kentucky,12975-0133,emmy@schaefershields.io,(936) 485-3056 x761|1-560-465-1805 x1304|1-671-794-8306 x865,c17f9b45bedd15af60c992ced3dfe5d8,Park Heights,ASSOCIATION-1
5
+ 62746 Rickie Cliffs,,North Elia,Colorado,54823-0427,TRUE,28.35206789,-5.231097532,Route 2,Lola Doyle,517 Miller Lodge,PO BOX 4815,New Stephenie,Texas,80280-6233,lashawn_jaskolski@fadel.biz|carlyn@goodwin.org|jonathan@bernhard.co,(693) 493-6201 x46645,aa22b1e0d3135a0756048a3bc00ee4d1,Park Heights,ASSOCIATION-1
6
+ 278 Jones Canyon,,Farrellland,Montana,17726-1731,TRUE,-67.5282421,34.4370906,Route 3,Trish Collins DDS,5547 Luke Port,PO BOX 3697,Lake Mel,Louisiana,52411-8632,,725-188-2759 x196,56d80401bee6391f5d1f18696f0b7b74,Park Heights,ASSOCIATION-1
7
+ 9545 Mohr Rapid,Suite 640,Wilfredoborough,New Hampshire,4798,TRUE,63.34954212,-151.4274062,Route 2,Shawn Kovacek,2755 Stanton Islands,PO BOX 5148,Beierview,Alaska,36263,heath@feilturcotte.co,1-111-796-2178|(813) 080-8483,12b3183827b34d740a2d569098340c40,Park Heights,ASSOCIATION-1
8
+ 1348 Gleason Pines,,Lake Hirammouth,Nebraska,29226,TRUE,-47.55835718,111.977906,Route 2,Chet Pollich I,909 Daphine Creek,PO BOX 3688,Port Morris,South Dakota,70145,,,87c07c76984c5734208c23fbf47273df,Park Heights,ASSOCIATION-1
9
+ 247 Champlin Turnpike,,Sporerfort,Alaska,54306-9115,TRUE,-36.580534,-59.31605988,Route 3,Oralee Kassulke,35484 Cathi Cliff,PO BOX 3486,Lemkeport,Hawaii,67892-6776,austin@reichertbernhard.org,,7432ff7783fbab423b61b82f1f67256e,University Heights,ASSOCIATION-2383
10
+ 9160 Tari Land,Suite 544,Schmelerfurt,Delaware,58336-1498,TRUE,-19.13810798,64.75017046,Route 4,Marketta Cronin,5930 Cheryle Well,PO BOX 7173,Dionnahaven,Rhode Island,67389-8210,samual_botsford@kunze.info,(182) 210-4701 x0520|599.248.9753 x534|1-573-204-7081 x353,88c4d2a2ba23a84d589ab69aa6516934,University Heights,ASSOCIATION-2383
11
+ 658 Ankunding Neck,,Trumanton,Hawaii,14500,TRUE,-88.13477899,-50.11342875,Route 3,Sherry Stroman,436 Hilario Isle,PO BOX 2473,Lake Eda,Delaware,62307,claris@hagenes.name,,63ac6cd4f6e1d4b4c287ce53c7b1fa04,University Heights,ASSOCIATION-2383
12
+ 89566 Balistreri Island,Suite 360,East Coleenstad,South Carolina,30949,TRUE,-58.41475267,-113.2480447,Route 5,Dr. Scotty Keebler,760 Brenton Square,PO BOX 7241,New Perlabury,Kansas,78966-1733,franklyn_gottlieb@schmeler.co,344.878.6893,b7fbaa92a162cbd1d85cfd9306956362,University Heights,ASSOCIATION-2383
13
+ 902 Jefferey Manor,Apt. 378,West Jerrellmouth,Arizona,98175-1519,TRUE,74.45125718,-173.1431519,Route 5,Angelita Kuhic,13111 King Village,PO BOX 6695,West Ruthefort,South Dakota,06386-7633,,1-106-091-3748 x952|966-410-7848 x44770,81a125d18ea59c2efd5e83c2f3868c80,University Heights,ASSOCIATION-2383
14
+ 584 O'Conner Highway,,Rochellestad,Vermont,52936-9027,TRUE,28.52209047,-87.55294859,Route 3,Keneth Deckow,319 Dina View,PO BOX 4323,East Kermit,Nebraska,60123-1233,mason@jaskolski.net,1-887-867-1168 x0874,853bc5aafa77269041f175a863e6da8c,University Heights,ASSOCIATION-2383
15
+ 6036 Hessel Spring,,Hahnville,Vermont,52250,TRUE,51.09471459,-139.0961368,Route 4,Sol Sauer,12391 Assunta Ford,PO BOX 7643,West Briceland,Georgia,11830,sanda.ryan@lind.net,,7bbe80fb4859aadfab8445ea9c3fa4f6,University Heights,ASSOCIATION-2383
16
+ 504 Schulist Turnpike,Suite 861,New Malikmouth,Michigan,17685-4934,TRUE,76.03777664,-155.5943996,Route 1,Seymour Moen,11759 Kenton Falls,PO BOX 1946,North Lorette,New Hampshire,27457,rico_torphy@ziemannhartmann.net|forest.schneider@bednarherzog.net|boyce@gibson.info,(245) 873-7963|1-887-842-6872|(393) 452-4557 x80774,55c2dcc48a689701201cbcf90422ed21,Eagle Pointe,ASSOCIATION-38
17
+ 62644 Johnie Spring,Suite 630,West Rhett,Iowa,47932-8730,TRUE,-71.34546509,-96.1313218,Route 1,Chana Baumbach,12349 Abraham Wells,PO BOX 3808,Lake Hilario,Tennessee,81593-8308,vivien@borer.name|hilaria@beahanromaguera.net,607-555-2988,0763a6a1879f4f869641f2dd1d73e9af,Eagle Pointe,ASSOCIATION-38
18
+ 513 Ritchie Crest,Apt. 938,West Genaro,Alabama,37481,TRUE,-11.57814009,-164.5722494,Route 5,Shea Hessel,88234 Stoltenberg Locks,PO BOX 2559,Jessstad,Colorado,15206-9805,,1-109-782-4998 x771|(420) 896-2859 x1124|593.794.5246,e0dc470c5dc6b55918f4a23a49c66f66,Eagle Pointe,ASSOCIATION-38
19
+ 687 Grimes Plain,,Lake Randellstad,Utah,63954,TRUE,39.75749483,137.0223461,Route 2,Trevor Turner,6002 Rickey Manors,PO BOX 5319,Shielamouth,Oregon,44525,,,7015c032d1ad1d5957d5df628f1f12c3,Eagle Pointe,ASSOCIATION-38
20
+ 11812 Gulgowski Ranch,Apt. 666,North Ezequielberg,Arkansas,27013,TRUE,34.48343282,49.77973799,Route 1,Adrian Mills,22788 Jamel Mission,PO BOX 3333,South Brooke,Arkansas,93358,gretta@kubjacobi.com|donte.williamson@wunsch.io,,9325a3c87ad0174e40453f37073df248,Eagle Pointe,ASSOCIATION-38
21
+ 3177 Grant Landing,Apt. 405,Andreaborough,Oklahoma,17767-1933,TRUE,51.18000308,177.4966302,Route 3,Cletus Wolff,813 Lou Crossing,PO BOX 3193,East Keenantown,Montana,74923-0851,gerardo@volkmanfriesen.name|levi_tillman@schoen.info|lewis@dickens.info,521-246-2404|200.221.5807 x5827|167.455.2048 x7118,6e121d1187a55d49a770c05c7f7578a4,Eagle Pointe,ASSOCIATION-38
22
+ 864 Donette Islands,,South Bernardport,Delaware,10548,TRUE,85.46944322,-103.4302999,Route 5,Ms. Stefanie Parisian,6324 Schinner Highway,PO BOX 1362,Kuhnside,Maine,41316,sheila@lueilwitzhackett.co|annetta_bosco@luettgen.co,,fcfd8a009ac45653433f2ed0dbda92e2,Eagle Pointe,ASSOCIATION-38
23
+ 61631 Beatrice Ways,Suite 511,Elfriedebury,Hawaii,52019,TRUE,-89.18188846,-99.29772131,Route 3,Rolland Kautzer,19445 Runolfsdottir Grove,PO BOX 1573,Port Jean,Illinois,46161-8574,,(844) 916-8789 x237|(687) 819-7741|1-319-194-2910,8d404b7a5ae6db9cd1c82d26ee7861b4,Eagle Pointe,ASSOCIATION-38
24
+ 359 Mika Inlet,Apt. 293,Rempelberg,Louisiana,19171,TRUE,2.239321753,37.92545296,Route 5,Roni DuBuque,769 Bashirian Inlet,PO BOX 3773,Port Breannaborough,South Carolina,94797-1059,,693.126.1358 x4050|238-746-3115|1-758-079-8156 x15316,4f56b05216ad54b8001fe926ca7d568a,Eagle Pointe,ASSOCIATION-38
25
+ 16483 Andrew Points,,Donnettestad,Virginia,26551-6105,TRUE,-3.935089578,-32.46566825,Route 3,Glenn Purdy,533 Nadia Pike,PO BOX 5217,Port Cherburgh,Minnesota,82355,odell@bergeroob.info,1-660-137-0193 x43922,eca1f999041d1377e9983ca41ddee835,Eagle Pointe,ASSOCIATION-38
26
+ 2068 Bibi Vista,Suite 848,West Stephane,Idaho,77137-1894,TRUE,33.15418361,-127.5699667,Route 4,Carlene Mante,1571 Sau Crescent,PO BOX 3972,Lake Inellland,Maine,51233-3128,lili.monahan@tremblay.name|benedict.aufderhar@flatley.net|liana@robel.co,1-311-634-3781 x048,55c33b9d05f7b610ce2e4dd281708bb0,Eagle Pointe,ASSOCIATION-38
27
+ 5834 Billi Ford,,New Erinn,Alaska,70587,TRUE,-75.87538128,-71.07282238,Route 5,Ms. Jann Koelpin,904 Streich Circle,PO BOX 7966,Labadieshire,Delaware,57701,shara.cain@maggio.com|donnell.cole@harvey.biz,895-503-3343 x92381|1-720-513-1647,47a155142bb9f809925c6b7d8c8ef01f,Eagle Pointe,ASSOCIATION-38
28
+ 5258 Prince Light,,New Yaeko,North Dakota,42339,TRUE,-61.81051156,37.05805493,Route 2,Chang McClure,499 Beahan Plain,PO BOX 5533,South Fred,Wisconsin,48815,freddy_rowe@nikolaus.biz|dorcas_rempel@monahan.biz,732.191.8507 x86776,742d15c7646d04fac7f67e9da5a4e709,Eagle Pointe,ASSOCIATION-38
29
+ 30053 Runolfsson Isle,Suite 924,New Jon,Connecticut,10389,TRUE,80.65018555,14.12905625,Route 4,Brad Rempel,527 Kozey Village,PO BOX 6895,Russelside,Louisiana,63900-5151,hanh.bins@boyerhansen.biz,996-264-8793 x9103|731.051.6364|967.077.8738,c530a3f25a88cbac8f94fac4e1f65704,Eagle Pointe,ASSOCIATION-38
30
+ 83655 Gilberto Greens,,East Gerardland,North Carolina,90487-0795,TRUE,62.03511343,-72.23996292,Route 2,Dr. Lai Kutch,48568 Schamberger Flats,PO BOX 1159,New Aishaberg,Utah,80167-5534,,1-668-162-6461 x1311|408-335-0097 x83879,e692aa7a003ce82f87d5e797a92f2a59,Eagle Pointe,ASSOCIATION-38
31
+ 7995 Bryce Ferry,,South Jack,Missouri,97069-5637,TRUE,38.1754369,-22.76969363,Route 5,Buck Beatty,3291 Moen Tunnel,PO BOX 5632,West Calvinborough,North Dakota,60090,darnell.oconner@wildermantremblay.name|leonila@lakin.org|tamara.rutherford@schroeder.biz,490.442.3945 x2567,734a3a6ac6063736497a6ed96255f87b,Eagle Pointe,ASSOCIATION-38
32
+ 98263 Mckenzie Port,,West Priscila,Montana,37971,TRUE,-39.07643514,-156.0982118,Route 1,Lucius Okuneva,3480 Kulas Hill,PO BOX 7508,Dannyberg,Alaska,7838,,884-648-3533,8c855299440b2121a2275f6f522f791e,Park Oaks,ASSOCIATION-3737
33
+ 111 Prohaska Freeway,Apt. 584,East Miquel,California,59058,TRUE,28.30172599,-111.7218681,Route 4,Beatris Wolff,1792 Katherin Road,PO BOX 7260,South Vancetown,Nevada,46041-2783,,,ebbcab24ce68b1bc813ac1b39dcc7f5e,Park Oaks,ASSOCIATION-3737
34
+ 7259 McLaughlin Bypass,,West Douglaston,Alabama,73388-3080,TRUE,61.56434193,146.7773887,Route 1,Dr. Jermaine Ankunding,928 Parker Landing,PO BOX 2527,South Patty,Indiana,61213-3735,carmen_jast@kreigerherman.com|ethan@schulist.com|leatha@bernierheidenreich.co,1-454-756-9101 x882,e63f12c43bfa6b1614b1312d0f7a024a,Park Oaks,ASSOCIATION-3737
35
+ 8989 Mary Cliff,,Port Samland,Maryland,70722,TRUE,-87.37236582,-120.1660443,Route 1,Mr. Truman Jast,909 Sherwood Ramp,PO BOX 3767,Kozeymouth,New Jersey,23440,isabel.ritchie@collins.org|aretha@schambergerkihn.biz,,7eac6ea3160317545b2ab538dba6eaf4,Park Oaks,ASSOCIATION-3737
36
+ 643 Kandy Circles,Apt. 919,Maggiostad,Missouri,73911-6521,TRUE,78.76209501,-156.7147089,Route 5,Becky Schiller,1312 Heathcote Park,PO BOX 1615,Port Vance,Minnesota,65391,ken@stracke.com,1-122-293-4949 x17502|347-480-9604|769-359-1120 x746,9e5efff4395e00efc7139e29c94d8ccf,Park Oaks,ASSOCIATION-3737
37
+ 8681 Tad Skyway,,Okunevaland,California,46219-9934,TRUE,-16.42575272,114.5978986,Route 1,Stan Harvey,74137 Sipes Village,PO BOX 6577,Houstonview,New Hampshire,85242-7188,beula_lehner@rohantromp.co,(945) 185-1413|559.189.9496 x670,012ae63e84fd37bb351cd24fdf4ec321,Park Oaks,ASSOCIATION-3737
38
+ 8855 Dione Divide,,Lake Lizeth,Arizona,81357,TRUE,-55.50370012,-64.90531649,Route 1,Delsie Cummings,7643 Zieme Wall,PO BOX 4932,Schaeferfort,Nebraska,64596-3749,dick@gottlieb.com|christopher@crooksfadel.biz,,e74b65ab7673475f17f3edcf4d850423,Park Oaks,ASSOCIATION-3737
39
+ 68911 Weimann Cove,Apt. 828,South Kacie,Arizona,63324,TRUE,67.99943693,54.97480995,Route 1,Mrs. Greg Russel,7479 Agripina Falls,PO BOX 2593,Botsfordmouth,Delaware,00824-7258,hugo.wuckert@bechtelaroreilly.io|manuel@aufderharpredovic.biz,186-081-0299 x215,fd7d19b33f8c299563bce326b209f637,Park Oaks,ASSOCIATION-3737
40
+ 7852 McLaughlin Street,,Rubinview,Alabama,13930-1030,TRUE,-22.45848804,-152.6484604,Route 2,Robin Shields,8509 Ebert Wells,PO BOX 4181,South Riva,Hawaii,63620-6627,,1-972-202-5004|(930) 611-9101 x9124|977-037-0824,d9287e447fb6699b711702c06cfcc101,Park Oaks,ASSOCIATION-3737
41
+ 155 Maryellen Camp,Suite 654,Bryonfort,Texas,35009-4549,TRUE,-24.0500074,-175.5878188,Route 1,Mozella Bode,558 Bernita Haven,PO BOX 2045,East Russellmouth,Oklahoma,99913-2964,,(992) 484-8453,c18f30ecc038d19e26441024b7b84aa3,Park Oaks,ASSOCIATION-3737
42
+ 17125 Donnelly Motorway,,Cristineshire,Idaho,84627-7406,TRUE,67.91909391,152.5775499,Route 2,Adelina Bashirian,60359 Amado Grove,PO BOX 4410,Violetmouth,Oklahoma,69424-1068,karina.skiles@jacobi.name,1-253-969-5374 x99965|1-465-755-8131 x926|1-391-807-1050,1329174a37bc589f71382fc5bf9c24d9,Park Oaks,ASSOCIATION-3737
43
+ 31995 Greenholt Centers,,East Wilbertmouth,Indiana,34709-7193,TRUE,70.11987745,-57.10162994,Route 4,Alvaro Cremin,7477 Elliot Square,PO BOX 3502,West Henryside,Michigan,47085,lakia@kutch.co,963-506-9048 x6194,49085964ceb0a98025278c6c12724410,Park Oaks,ASSOCIATION-3737
44
+ 12429 Marquardt Lights,Suite 194,Leonbury,Connecticut,48175-9534,TRUE,68.9879222,11.57073611,Route 5,Shannan Zieme,66200 Donnelly Motorway,PO BOX 3794,Waltermouth,West Virginia,75040,,1-577-685-5650 x2950|225-354-1025|580.094.2146,44cc2821ef6a8be2668bc45d540351e4,Summer Pointe,ASSOCIATION-42
45
+ 67308 Heaney Green,Suite 763,Lake Khalilah,New York,88442,TRUE,58.8462533,-32.42144852,Route 1,Abe Windler I,36880 Dominique Alley,PO BOX 4792,West Micah,Alaska,66699,tonja@casper.io|desiree_fahey@howe.co|carol@parisian.io,406.753.7429 x788|(440) 914-7166 x9510|(205) 412-3010 x2867,6c10dd1e707af47f65c64201c66f8768,Summer Pointe,ASSOCIATION-42
46
+ 3371 Raynor Valley,,Framiville,Delaware,36400-7180,TRUE,-36.04953643,-130.7313615,Route 3,Asa Veum,93079 Elliot Forges,PO BOX 5018,Bryonland,Florida,90002-1821,precious@braun.com|claie.abernathy@howell.io|kermit@auer.co,(135) 083-7038 x933|1-552-591-3210,8727d4c8377cf45aeff4486db3ad2bb9,Summer Pointe,ASSOCIATION-42
47
+ 92840 Von Parkways,Apt. 692,Lake Justinton,Delaware,42366-1470,TRUE,58.03335291,-48.05304488,Route 2,Merle Bernhard II,3526 Shanahan Ferry,PO BOX 4719,Marquardtview,Kentucky,74783-9512,grady@johnson.com,961-805-4416 x63172|765.855.4703|1-768-595-2641,3742334034ea65857809f8c6028aadfd,Summer Pointe,ASSOCIATION-42
48
+ 8417 Kayla Harbors,,Nolanview,Colorado,56064,TRUE,-44.82199054,144.1689794,Route 1,Mrs. Yang Ullrich,2747 Narcisa Greens,PO BOX 2245,East Terry,Hawaii,73935-5059,effie.williamson@reingerjast.info,1-685-188-1553 x070,f311420bba1d258f68e0b1bee46be345,Summer Pointe,ASSOCIATION-42
49
+ 604 Zoraida Mill,,East Maryalicefort,Oregon,94273,TRUE,-65.86815327,-136.3993958,Route 2,Ms. Augustine Mohr,852 Okuneva Street,PO BOX 3280,Lefflerport,South Dakota,01160-9206,albert@kautzerfay.name|tom_waters@ferry.org|consuela@veum.net,,0659841d8b32abfb6622e603b60e797e,Summer Pointe,ASSOCIATION-42
50
+ 6353 Ratke Groves,Apt. 921,Port Russel,Michigan,29031,TRUE,25.65032032,158.1568774,Route 4,Nolan Thiel,270 Dickinson Crossroad,PO BOX 7850,Hackettberg,Vermont,86887,ruthanne@oberbrunnergrant.biz|stephania_abbott@torphy.biz,903-430-7086|1-276-842-7288 x252|133-213-6174 x64111,350751487442f2908bba311a6a550acf,Summer Pointe,ASSOCIATION-42
51
+ 807 Marvin Meadow,,Port Bonny,Michigan,66522,TRUE,31.57113761,-51.41517937,Route 5,Floy Hudson,3133 Hubert Tunnel,PO BOX 3467,New Mathaview,Pennsylvania,3206,david@steuber.co,1-558-175-7233 x85358|1-679-574-5790,c5e9dca0f995e14dca44ace9d848c5cf,Summer Pointe,ASSOCIATION-42
52
+ 34657 Wehner Ville,Apt. 473,McClureville,Hawaii,68149-0131,TRUE,-69.38209078,157.2595232,Route 4,Miki Armstrong,827 Pearline Mall,PO BOX 2287,Jamaalhaven,Nevada,02055-0412,eugene_boyer@christiansenfisher.net|linsey.hickle@tromp.name|mervin_harris@ernsersenger.net,275.263.9385 x6076,4659822ab5ed00c281a57a6cd87720a8,Summer Pointe,ASSOCIATION-42
53
+ 38906 Ozzie Road,,Aleshaport,California,32666-1281,TRUE,-68.64715876,-122.5566967,Route 2,Sharie Green,991 Gayle Locks,PO BOX 6793,South Eldridgemouth,New Mexico,55170-1403,gary@braun.org|chang@blick.info,(110) 166-3252 x812|(736) 906-5049 x3854,1a6d21ed6a111bcb52921f20fb8df537,Summer Pointe,ASSOCIATION-42
54
+ 9824 Anderson Island,,New Robbyfort,New Jersey,25331-0350,TRUE,49.49359827,63.96464749,Route 5,Jenny Conn,5324 Shannon Stravenue,PO BOX 3587,Darrickland,Arkansas,66214-1722,rodolfo@kuhlman.org|alva@jerde.name|manie_ziemann@mcglynn.org,1-445-367-1654|1-627-440-9807 x776|1-983-959-7549 x9332,cc63882682909662e4cc18328489fc33,Summer Pointe,ASSOCIATION-42
55
+ 1092 Mallory Villages,Suite 937,South Kasey,Michigan,53277,TRUE,-70.09392836,-26.48198193,Route 3,Sparkle Haag,758 Kautzer Street,PO BOX 3724,South Shea,Alaska,51674-9537,eusebio@gulgowski.name,1-491-460-4322 x50092,d0dae5940bfaea7cdeb57267e1487717,Summer Pointe,ASSOCIATION-42
56
+ 6685 Jaskolski Points,,Weberport,West Virginia,25840-9324,TRUE,-84.91721983,-79.10806865,Route 1,Myrtice Deckow V,74623 Friesen Hollow,PO BOX 5421,Joshside,Montana,51899,kris@sawayn.info|aurelio@terry.info|oren.kaulke@murazik.com,(253) 010-8371 x479|(317) 862-6551|(957) 791-7731,73ea99c2817fa2cc571cfceb9740f588,Summer Pointe,ASSOCIATION-42
57
+ 123 Phuong Causeway,Suite 300,New Forrestview,Indiana,6344,TRUE,-1.653092322,-148.4188291,Route 4,Cheri Krajcik,777 Jamaal Ville,PO BOX 1521,West Lyman,California,48355,shad.goldner@cormier.io,1-767-991-3142 x74302,11db09e2a816d0b4e3a48092a7de00eb,Summer Pointe,ASSOCIATION-42
58
+ 69836 Littel Hill,,North Devinville,Utah,44129,TRUE,-41.14741252,-4.257196648,Route 2,Jaimee Bayer,78645 Leatrice Trail,PO BOX 3236,South Elvieside,Michigan,12627,sang@gulgowski.org|zofia@damore.name,524.983.8111,25f8e0f622bde9e3a2b24612d7c8ce4c,Summer Pointe,ASSOCIATION-42
59
+ 30179 Fahey Glens,Suite 174,New Gustavofort,Iowa,6667,TRUE,4.69316478,-127.7281159,Route 2,Larry Koelpin,88835 Collier Falls,PO BOX 3053,Port Kimbramouth,Wisconsin,64716,,1-398-675-3622 x470,203515fa7367e7b405ca0fbe0cab7072,University Oaks,ASSOCIATION-89
60
+ 48803 Kenia Field,,Lake Ike,Delaware,08129-4557,TRUE,79.24772952,-126.9026555,Route 5,Randy Hackett,871 Pagac Hill,PO BOX 6429,Lake Nicolasa,New Mexico,91141-7952,,665-026-9802|(978) 268-9259 x0531,ed0eb380b8af682f388325f76eb52155,University Oaks,ASSOCIATION-89
61
+ 21713 Anja Run,Apt. 956,East Antonetteborough,New Mexico,57050-0906,TRUE,12.1076543,33.77676891,Route 3,Wendell Nolan,951 Hoeger Trafficway,PO BOX 628,Antonettaton,Tennessee,22122,luciana.sanford@wehner.info|dannette@grant.biz,456.324.8100,96540f325a852b17aff9ed3c139e0b51,University Oaks,ASSOCIATION-89
62
+ 949 Madonna Turnpike,,Lake Rexfort,California,6566,TRUE,25.11564134,-30.00267183,Route 4,Rosemary Kertzmann,297 Tory Ferry,PO BOX 1780,North Earlene,South Carolina,20558-7429,ralph@herzog.io,540-611-3815 x1756,14555caf22a7218a67f9eed52347f659,University Oaks,ASSOCIATION-89
63
+ 1654 Jennefer Keys,Suite 990,North Bennieport,Delaware,70492,TRUE,68.57885051,87.2107834,Route 4,Merle Berge,660 Tommy Station,PO BOX 7619,Rickeybury,Washington,86349-4435,,,ba81fda23af499a6cb858b614868de94,University Oaks,ASSOCIATION-89
64
+ 36258 Jaclyn Prairie,,Lake Alphonsoport,Kentucky,91813-1447,TRUE,-20.90289378,-23.9982359,Route 5,Jeanmarie Nolan,21701 Parisian Unions,PO BOX 5722,Hodkiewiczfort,Kansas,21328-7594,luigi_wilkinson@halvorson.com|lamar@abernathy.biz|rebbeca@kuvalis.org,128-168-0696 x1236|176.201.3581 x4100,61d758718ca999a73c4bc5ea2476b436,University Oaks,ASSOCIATION-89
65
+ 66606 D'Amore Dam,Apt. 261,South Faustina,Montana,49332,TRUE,-43.73770458,81.46596209,Route 3,Veta Haley,384 Sauer Fords,PO BOX 6692,Rosefort,Illinois,20325,,847-301-9073,079b353c70d75ac4b8f425623ac38c3a,University Oaks,ASSOCIATION-89
66
+ 224 Gerlach Ramp,,Sergioport,Oklahoma,11594,TRUE,-30.16821542,7.459414535,Route 4,Al Goldner,284 Darrel Ridges,PO BOX 7200,Port Timika,Hawaii,68995-1786,eddie_larkin@sauerschumm.com|colin@cormier.name,,000e9a4b6cc0f72ab36874e24df9a6b2,University Oaks,ASSOCIATION-89
67
+ 6665 Flatley Forks,Suite 701,Port Jasperfurt,Oklahoma,22207-8632,TRUE,-76.15993927,77.23887121,Route 1,Dr. Lea Stroman,8857 Jaunita Squares,PO BOX 5540,Lueilwitzview,Arkansas,23692,,551.678.5860 x8253,5af547dec7632151b039743df78cf93f,University Oaks,ASSOCIATION-89
68
+ 54858 Jeff Gardens,,East Bradyton,Mississippi,65751-9629,TRUE,-89.63544194,-31.70682879,Route 5,Lucio Dach,18058 Pfannerstill Avenue,PO BOX 6893,North Chaseville,Maryland,61641-1366,arnoldo_conn@wizamayer.io|joana@kulasoberbrunner.name|demarcus@crist.io,,2877c5d6c4645358cff2e2b173ddfb1b,University Oaks,ASSOCIATION-89
69
+ 735 Wehner Court,,Vivianmouth,Georgia,92829,TRUE,-12.20962243,167.4112726,Route 4,Odette Berge,457 Mante Club,PO BOX 1465,Steuberhaven,Connecticut,23100-7702,marshall_graham@breitenberg.com,905.436.0159,3774ce19ce3fa8e3f8afbad9e0084d03,University Oaks,ASSOCIATION-89
70
+ 8783 Sal Street,Suite 605,Avrilport,Iowa,83278,TRUE,23.24655975,80.91175095,Route 2,Katie Frami,6308 Nienow Mountains,PO BOX 665,Port Alecia,Indiana,54798,ariel@lednerschroeder.io,984-238-9184 x169,23d618c2a5760414c252e5bec3bf564e,University Oaks,ASSOCIATION-89
71
+ 670 Eliseo Pike,,Shawnaport,Massachusetts,34165-8755,TRUE,3.836264693,172.0260189,Route 3,Angelo Stiedemann,972 Greenholt Fork,PO BOX 6896,West Bernardofurt,Arkansas,67745-7507,india_sanford@yundt.biz|devin.kuhic@stoltenbergschulist.co,1-108-008-7612|1-192-798-9388 x7677,023e28a10aa055e0300d1fd491b2e730,University Oaks,ASSOCIATION-89
72
+ 76439 Emogene Lakes,,Murphyfurt,Nevada,46239-5844,TRUE,18.10830369,-118.2676277,Route 5,Jerald Dicki,5611 Charissa Hill,PO BOX 3375,Port Kris,Florida,76074,larue@dietrich.info,,d70bc18f7a2dd93c52030d7922f5c524,University Oaks,ASSOCIATION-89
73
+ 9242 Sauer Ways,,Port Shaynebury,North Dakota,69152,TRUE,63.33753162,-165.3755839,Route 1,Kellee Bruen,860 Koelpin Lake,PO BOX 7668,Port Almedatown,Colorado,23216-0849,hayden@adams.co,,083a4d8e6191a205e1cadb2fe141ac2f,University Oaks,ASSOCIATION-89
74
+ 5406 Britany Ferry,Suite 274,North Edward,South Dakota,06468-6671,TRUE,55.31180818,159.1626846,Route 1,Felton Deckow DDS,85168 Leatrice Lodge,PO BOX 2650,Muellerport,Ohio,53489-0111,carmella@watsica.info,1-335-136-5604 x129,27db8d8d2b1b0b416b49a8af7e25dc04,University Oaks,ASSOCIATION-89
75
+ 7060 Stracke Crossing,Apt. 741,Port Harrison,Florida,43320,TRUE,-11.13020982,-154.2415997,Route 2,Byron Macejkovic,25585 Glen Hollow,PO BOX 1139,Gottliebbury,Arkansas,39097,joan.raynor@nolan.biz|seth@herman.net,1-955-502-4021 x6670|224.070.7238 x96918|108-411-8780 x62139,3717c04a0d5ed1cc4b2637c5903a11d3,University Oaks,ASSOCIATION-89
76
+ 7320 Bruen Ports,,New Carlo,Arizona,10546,TRUE,42.29440205,-88.5322872,Route 5,Cornell Bayer,615 Rodney Springs,PO BOX 5825,Doylebury,Virginia,62523-6639,jarvis@schmidtlemke.name|edna.lindgren@crona.info|wesley.ko@langosh.co,(437) 162-2834 x6031|1-523-554-8687,08c53bdc03d583e5177d169fcb1c1ae2,University Oaks,ASSOCIATION-89
77
+ 394 Mirian Track,Suite 877,Antonyborough,Colorado,69063,TRUE,-47.93539426,-82.40523943,Route 4,Dr. Johana Mante,4396 Doyle Gardens,PO BOX 2100,North Maganfort,North Carolina,62802,sidney@stehr.org|rex.streich@ritchie.com|leanna@stoltenberg.co,,53442cb2dd5dee3c947a59d03a8c5bd8,University Oaks,ASSOCIATION-89
78
+ 338 Rosaria Mountain,Apt. 149,Port Andreton,Minnesota,16450,TRUE,-46.44723755,81.78891942,Route 4,Sondra Harvey,4324 Hamill Dale,PO BOX 2314,East Francismouth,Hawaii,45018-4058,darleen.schulist@schmittmoore.io|racquel_hilll@will.name|andy_mayert@altenwerth.info,483.514.6091,31b6fe56cfa72f3c9420eabce5ad290f,University Oaks,ASSOCIATION-89
79
+ 432 Margert Roads,,Kautzerborough,Florida,92941,TRUE,-60.85715277,143.1959909,Route 3,Oren Wisozk,80842 Oberbrunner Valleys,PO BOX 5588,Lake Sonjastad,West Virginia,15132,palmer@vonhane.name|gillian@dicki.info|lavenia@sauer.net,1-491-616-8688 x1556,7c61d753f98c984091252cc30d7aec70,Autumn Gardens,ASSOCIATION-33333
80
+ 14323 Sauer Extensions,Suite 367,South Marquitta,California,88445-7990,TRUE,-37.58351224,33.19391044,Route 5,Carlo Stracke,904 Bogan Forge,PO BOX 4917,Conroytown,Texas,44772-9585,alejandra_spinka@mayer.co,1-881-529-0216,ab345335448cdb9e33430ea9eb4f95d8,Autumn Gardens,ASSOCIATION-33333
81
+ 789 Alex Throughway,,O'Connellmouth,Indiana,58232-4930,TRUE,61.48057029,-52.48455747,Route 5,Miss Gertude Kuhic,629 Adrianne Radial,PO BOX 7079,Laurenshire,Utah,77889,shea_howe@nitzsche.name,(719) 383-6504|428-074-9403,ec55e907e6fa04302fb31401f26afb3d,Autumn Gardens,ASSOCIATION-33333
82
+ 65348 Alden Streets,Suite 429,East Joesphstad,Mississippi,27149-8037,TRUE,-9.884461259,-51.72292502,Route 1,Leif Shields,384 Lehner Turnpike,PO BOX 5085,New Jacquesview,South Carolina,14583,anne_moore@schuppechristiansen.org|pattie.pfannerstill@adamsnienow.org,805.527.0176 x6212|536-348-7059 x9125|366.875.2413 x047,41b0d1e5915fc80a752f38862749d4f1,Autumn Gardens,ASSOCIATION-33333
83
+ 106 Bauch Point,,South Valentina,Montana,90737-6543,TRUE,-53.15964761,-20.01310105,Route 2,Ginger Anderson,34251 Stan Springs,PO BOX 7380,Harbermouth,Kansas,17743,,,539aa2e5c78ba24d5be263b61f56009f,Autumn Gardens,ASSOCIATION-33333
84
+ 43743 Daisey Vista,Apt. 562,Cormiermouth,Maine,95824,TRUE,48.9275731,-47.46117652,Route 1,Wilford Quitzon,1913 Medhurst Forge,PO BOX 1697,North Marc,Utah,66373-0893,,1-159-803-5973 x95728,b1079d62e3a1193a86967d44be9836a1,Autumn Gardens,ASSOCIATION-33333
85
+ 18946 Bonny Route,,Loritachester,Pennsylvania,5816,TRUE,7.404407964,-9.512186818,Route 1,Dr. Kirk Thiel,565 Mikel Motorway,PO BOX 4448,Margeretville,Idaho,31666,,1-246-875-9344 x99264,f3aab2061a1b94c73f4a8c5c089ae00b,Autumn Gardens,ASSOCIATION-33333
86
+ 65916 Jocelyn Locks,,Elijahborough,Idaho,56024-4157,TRUE,-89.7889836,16.15540861,Route 1,Carman Jacobson IV,4324 Jaskolski Drives,PO BOX 7627,New Crista,Missouri,69649-0076,lyle@grimesbuckridge.info|tyra.vandervort@torp.net,(218) 153-4721 x805|838-717-3989,3352022eb63160efc115247ff579b961,Autumn Gardens,ASSOCIATION-33333
87
+ 495 Shanda Knoll,Apt. 524,New Patsy,Michigan,62205,TRUE,-10.92221015,-60.49004086,Route 3,Ginger Crona,5958 Gonzalo Orchard,PO BOX 2098,Lindgrenstad,Texas,80167-8423,griselda@rueckergrady.io,,5fa6ac83fca416acceb487b87677a417,Autumn Gardens,ASSOCIATION-33333
88
+ 9598 Carter Row,,Barneyshire,Idaho,43280-6531,TRUE,-34.96355587,148.6131777,Route 2,Michelina Schoen,8796 Breitenberg Pines,PO BOX 632,Jesseberg,Arizona,5738,margarette.blick@williamson.org|kandy@jakubowski.org|kary@kemmer.biz,1-162-879-7989|578-518-1248 x451,ec8e6b8559c70155a33e5c2ed1657ce1,Autumn Gardens,ASSOCIATION-33333
89
+ 672 Ezekiel Plaza,Suite 468,Shantelborough,Minnesota,32533,TRUE,-8.683311901,170.2699127,Route 1,Tamekia Kuhn,192 Gertrudis Valley,PO BOX 6099,Port Cleopatraport,Oklahoma,02663-7469,blair@weberschmitt.org|amos.fisher@schroedermacgyver.name|eva@vandervort.name,974.747.8208 x24651,ce4eb3e80f232f69c767378001f467e8,Autumn Gardens,ASSOCIATION-33333
90
+ 40807 Jodie Brook,,Port Hollismouth,Arkansas,86867,TRUE,83.38019809,-31.87384944,Route 1,Dorathy Rutherford,212 Hudson Loop,PO BOX 5862,Kundeburgh,Delaware,20152-7061,racquel_ledner@lynchhyatt.org|homer@haley.io|sean_feest@gaylorddare.io,(294) 811-8392|1-273-552-1548 x2780,422013ca0e2b708b14d4f2a1c2d27adc,Autumn Gardens,ASSOCIATION-33333
91
+ 249 Alanna Branch,,Willburgh,Arkansas,18344-3669,TRUE,-17.19375095,167.4047826,Route 2,Issac Ritchie,671 Mitchell Road,PO BOX 3070,Stoltenbergborough,Connecticut,93585-2234,brandon@dachgrant.co,985-776-8600|919.096.9817,0874781e151ab7edcf2497f762d5f4d3,Autumn Gardens,ASSOCIATION-33333
92
+ 5529 Gutmann View,Suite 479,Carylonhaven,Alabama,42742-9690,TRUE,70.34081163,150.7983868,Route 4,Ms. Alec Blick,8953 Wilfred Station,PO BOX 7121,Boyermouth,Missouri,26265,kyle_ziemann@schamberger.org|dinorah@lynchgreenholt.net|emilio@zboncak.org,794.200.9482,423ce8276c065769b75c290cea0439c0,Autumn Gardens,ASSOCIATION-33333
93
+ 804 Karl Trail,,North Amosberg,Delaware,93945-2910,TRUE,-52.29913836,-174.7507319,Route 2,Cherly Pacocha PhD,50438 Tommy Light,PO BOX 5876,Port Gastonstad,Wyoming,35790-2020,britt.volkman@gislason.net|hunter.klein@turcottedicki.co,,8172179b66f886a74dcb3fd58d5c291f,Autumn Gardens,ASSOCIATION-33333
94
+ 566 Kautzer Mountains,Apt. 775,North Sethland,West Virginia,46172-4103,TRUE,-84.96682107,152.4218121,Route 3,Ms. Oleta Cummerata,37993 Donny Trace,PO BOX 2434,Port Kyungfurt,Massachusetts,58394-4486,kelly@stark.info|cai.kshlerin@gleichner.net|lisha@sipes.io,575.318.4779|(538) 181-4396,dfe48a50829721d2e7f408d943d714cc,Autumn Gardens,ASSOCIATION-33333
95
+ 9477 Crona Junction,Apt. 667,Cassinhaven,Alaska,36447-5029,TRUE,33.05694175,-10.68982628,Route 1,Tyron Roberts,26104 Emory Brook,PO BOX 614,Keeblerfort,Arkansas,726,,1-605-385-7793|218-924-5070|316-769-0293 x538,98132b8f67d11b2f4e1ed930186d0d0f,Autumn Gardens,ASSOCIATION-33333
96
+ 1944 Hartmann Views,,Tiannafurt,Ohio,79776,TRUE,-80.28573389,-20.58376798,Route 5,Starr Rosenbaum,604 Rolfson Place,PO BOX 4080,Rileyton,Rhode Island,93950,avery.harber@nikolauwift.name,120.624.4930 x47653,5f413104efed7b042c573458544d43cd,Paradise Estates,ASSOCIATION-a7ze
97
+ 868 Krajcik Loaf,,Danteton,New Hampshire,91230,TRUE,58.19410231,61.04477254,Route 4,Bennie Beier IV,783 Ismael Vista,PO BOX 5433,East Oraleehaven,South Dakota,43377,,(902) 123-3369 x7830,b27310e3ea01433274fb4fbe832b14f2,Paradise Estates,ASSOCIATION-a7ze
98
+ 23654 Rolland Squares,Apt. 178,Douglasborough,New Jersey,83823,TRUE,83.79144624,133.1287203,Route 2,Cristobal Hermann II,259 Windler Meadow,PO BOX 3403,Lake Numbersfurt,Alaska,88709,nery@creminmante.biz,893-297-8085|1-538-951-8490 x31674|1-272-737-8960 x46556,00466de83bb289c1348ae51c488123ac,Paradise Estates,ASSOCIATION-a7ze
99
+ 28404 Dooley Port,,South Edwardo,Kansas,45894-7986,TRUE,8.073469807,10.72825726,Route 4,Seema Willms,5631 Koelpin Flat,PO BOX 2154,Piedadchester,Virginia,86185,ricky_prosacco@donnellylockman.com|weston_torp@bartoletti.info,,cb4fee1e38039e97a1c23645c961ca7f,Paradise Estates,ASSOCIATION-a7ze
100
+ 20003 McLaughlin Plain,Suite 423,West Jeri,Ohio,25043-7621,TRUE,53.1128103,156.4971678,Route 4,Jessenia Purdy,95297 Kilback Orchard,PO BOX 6193,Carterville,Pennsylvania,04331-9726,cordell@feeneyharris.org|randolph.hauck@streichweber.info|christopher@schumm.com,282-162-2514|1-478-440-6080|(124) 700-2098,9d8ac375d99de951796c6e83bbd845d1,Paradise Estates,ASSOCIATION-a7ze
101
+ 543 Williamson Loaf,Suite 666,New Burl,Oregon,46220-0144,TRUE,72.0637439,152.1654642,Route 5,Alton Koepp IV,729 Prohaska Light,PO BOX 6321,Port Rachaelfort,Ohio,78098-2681,,1-272-811-3331 x958|189-978-1306|1-133-828-7415,2609e44be9b8dd0e54ca947eb0b98027,Paradise Estates,ASSOCIATION-a7ze
102
+ 6187 Ziemann Center,Suite 131,East Youngville,Mississippi,87293,TRUE,-37.33655119,23.2845764,Route 5,Wilfredo Stamm,712 Hoeger Valley,PO BOX 6346,Erniemouth,Idaho,57904-8960,,364-324-1505,1ffb57c2b8e6194af07ab56d3c91c0ee,Autumn Place,ASSOCIATION-888888
103
+ 20329 Mirian Motorway,Apt. 366,Dachshire,Illinois,46632,TRUE,-64.36206588,160.709661,Route 2,Kandice Leuschke,47924 Denver Stream,PO BOX 1894,Hesselchester,Missouri,63812-0801,hillary.ondricka@bogan.name|frederica@auer.org|damian.powlowski@donnelly.net,(669) 059-5826 x8489|826-819-3875 x306|174.848.9896,9eadfaba21842bde29aec434204690ad,Autumn Place,ASSOCIATION-888888
104
+ 4634 Hamill Row,,Wardville,California,60671-5071,TRUE,-72.71113754,154.8961431,Route 2,Salvador Purdy,81121 Deon Lakes,PO BOX 6595,Erikmouth,Michigan,19343,lera_farrell@oberbrunner.net|heidy.rosenbaum@hartmann.name|beie@crooks.info,321.788.6995|288-003-0426 x2162,a6af4c3d7507c1a489cebecae314bfa7,Autumn Place,ASSOCIATION-888888
105
+ 78949 Wiza Wall,,Iraside,Oklahoma,64535,TRUE,51.59735686,48.00066076,Route 5,Mr. Francisco Bradtke,575 Hahn Way,PO BOX 4561,North Gilmamouth,Idaho,49013,travis@jenkintreich.org,,19e12fba57f580e63b0d702497eb0fbc,Autumn Place,ASSOCIATION-888888
106
+ 5579 Daron Path,,Coralieland,North Carolina,75224,TRUE,41.36671458,-17.90965987,Route 5,Judi O'Keefe I,9705 Telma Village,PO BOX 988,Port Lennybury,Montana,38596-5384,,479.267.5879|(495) 715-7815 x590|494-887-4637,7830690fb27e932fd6c36c5a8965cc3c,Autumn Place,ASSOCIATION-888888
107
+ 13088 Robt Locks,Suite 893,North Francemouth,Ohio,15104,TRUE,51.65155421,148.887227,Route 4,Genevie Boyle,3565 Ariel Hill,PO BOX 7528,North Alberto,Colorado,78778-6772,rupert@rau.io|normand@farrellfisher.name|vada@white.net,217-796-1150 x91090,8ddbb81dc18d0cf2615f2ca674406827,Autumn Place,ASSOCIATION-888888
108
+ 1326 Ebert Squares,,West Warrenburgh,Oregon,23912,TRUE,-12.56766417,-139.0064386,Route 1,Ms. Liz Wehner,4636 Kulas Springs,PO BOX 3396,Lake Bufordbury,Oklahoma,34599-9120,bell@paucekmraz.co|reynaldo_zieme@lemke.org,,d8b17181a959e89b8bb39b745c1f0a11,Autumn Place,ASSOCIATION-888888
109
+ 57833 Harvey Street,,Claudettetown,Georgia,56597-6793,TRUE,65.37108401,-54.82541708,Route 2,Delcie Von,28583 Lizeth Street,PO BOX 2735,South Kelsiefort,Pennsylvania,67764,steve.konopelski@bartoletti.io,,79172408bd3d5ad8948bfaa1f877a7ca,Autumn Place,ASSOCIATION-888888
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+
3
+ PROPERTY_ATTRS = %i[
4
+ mailing_street_2 external_id mailing_street_1 mailing_city mailing_state mailing_postal_code
5
+ ].freeze
6
+
7
+ original_size = HOALife::Property.count
8
+ csv = CSV.read(File.expand_path('properties.csv', __dir__), headers: true)
9
+
10
+ @parent = HOALife::Account.where(organizational: true).first
11
+ @associations = {}
12
+
13
+ def find_or_create_account(name)
14
+ found = find_account(name)
15
+ found || create_account(name)
16
+ end
17
+
18
+ def find_account(name)
19
+ if @associations[name]
20
+ @associations[name]
21
+ else
22
+ account = HOALife::Account.where(name: name).first
23
+ @associations[name] = account if account
24
+ end
25
+ end
26
+
27
+ def create_account(name)
28
+ account = HOALife::Account.create(name: name, parent_id: @parent.id)
29
+
30
+ @associations[name] = account
31
+
32
+ account
33
+ end
34
+
35
+ csv.each do |row|
36
+ association = find_or_create_account(row["association_name"])
37
+
38
+ attrs = row.to_h.merge(
39
+ account_id: association.id, phone_numbers: row["phone_numbers"].split("|"),
40
+ emails: row["emails"].split("|"),
41
+ )
42
+
43
+ property = HOALife::Property.create(attrs)
44
+ assert(property.errors.nil?)
45
+ refute(property.id.nil?)
46
+ end
47
+
48
+ refute_equal(original_size, HOALife::Property.reload.count)
49
+
50
+ csv.each do |row|
51
+ find_by_external_id = HOALife::Property.where(external_id: row["external_id"])
52
+ assert_equal 1, find_by_external_id.count
53
+
54
+ found = find_by_external_id.first
55
+
56
+ new_external_id = row["external_id"] + "WithAChange"
57
+ found.external_id = new_external_id
58
+ assert(found.save)
59
+
60
+ assert_equal 1, HOALife::Property.where(external_id: new_external_id).count
61
+ assert found.destroy
62
+ end
63
+
64
+ @associations.each do |_, account|
65
+ assert account.destroy
66
+ end
67
+
68
+ assert_equal(original_size, HOALife::Property.reload.count)
data/examples/test.rb ADDED
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/setup'
4
+ require 'hoalife'
5
+
6
+ require 'securerandom'
7
+ require 'digest/md5'
8
+ require 'csv'
9
+
10
+ SEED = SecureRandom.hex
11
+
12
+ def hex_of(str)
13
+ Digest::MD5.hexdigest(str)
14
+ end
15
+
16
+ def assert(bool)
17
+ if bool
18
+ print "\e[32m.\e[0m"
19
+ else
20
+ puts "\e[31m"
21
+ puts "FAILED"
22
+ puts caller
23
+ print "\e[0m"
24
+ end
25
+ end
26
+
27
+ def refute(bool)
28
+ assert !bool
29
+ end
30
+
31
+ def assert_equal(exp, act)
32
+ assert exp == act
33
+ end
34
+
35
+ def refute_equal(exp, act)
36
+ assert exp != act
37
+ end
38
+
39
+ require_relative './account'
40
+ require_relative './property'
41
+ require_relative './ccr_article_and_violation_types'
data/lib/hoalife.rb CHANGED
@@ -3,13 +3,14 @@
3
3
  require 'zeitwerk'
4
4
  require 'hoal_inflector'
5
5
 
6
- loader = Zeitwerk::Loader.for_gem
6
+ loader = Zeitwerk::Loader.new
7
7
  loader.inflector = HOALInflector.new
8
+ loader.push_dir(File.join(__dir__))
8
9
  tests = "#{__dir__}/**/*_test.rb"
9
10
  loader.ignore(tests)
10
11
  # loader.log!
11
12
 
12
- if ENV['DEV']
13
+ if ENV['HOALIFE_RUBY_DEV']
13
14
  require 'listen'
14
15
 
15
16
  loader.enable_reloading
@@ -24,16 +25,7 @@ require 'hoalife/error'
24
25
 
25
26
  # :nodoc
26
27
  module HOALife
27
- @api_base = ENV.fetch('HOALIFE_API_BASE', 'https://api.hoalife.com/api')
28
- @api_version = ENV.fetch('HOALIFE_API_VERSION', '1').to_i
29
- @api_key = ENV['HOALIFE_API_KEY']
30
- @signing_secret = ENV['HOALIFE_SIGNING_SECRET']
31
- @sleep_when_rate_limited = 10.0
32
-
33
28
  class << self
34
- attr_accessor :api_key, :signing_secret, :api_base, :api_version,
35
- :sleep_when_rate_limited
36
-
37
29
  # Support configuring with a block
38
30
  # HOALife.config do |config|
39
31
  # config.api_key = "foo"
@@ -43,5 +35,26 @@ module HOALife
43
35
  def config
44
36
  yield self
45
37
  end
38
+
39
+ def thread_local_var(key, default_value = nil)
40
+ current_key = "HOALIFE_RUBY_#{key}"
41
+
42
+ Thread.current[current_key] = default_value
43
+
44
+ define_singleton_method(key) do
45
+ Thread.current[current_key]
46
+ end
47
+
48
+ define_singleton_method("#{key}=") do |value|
49
+ Thread.current[current_key] = value
50
+ end
51
+ end
46
52
  end
53
+
54
+ thread_local_var :api_key, ENV['HOALIFE_API_KEY']
55
+ thread_local_var :signing_secret, ENV['HOALIFE_SIGNING_SECRET']
56
+
57
+ thread_local_var :api_base, ENV.fetch('HOALIFE_API_BASE', 'https://api.hoalife.com/api')
58
+ thread_local_var :api_version, ENV.fetch('HOALIFE_API_VERSION', '1').to_i
59
+ thread_local_var :sleep_when_rate_limited, 10.0
47
60
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HOALife
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoalife
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
  - Daniel Westendorf
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-08 00:00:00.000000000 Z
11
+ date: 2019-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zeitwerk
@@ -125,6 +125,11 @@ files:
125
125
  - Rakefile
126
126
  - bin/console
127
127
  - bin/setup
128
+ - examples/account.rb
129
+ - examples/ccr_article_and_violation_types.rb
130
+ - examples/properties.csv
131
+ - examples/property.rb
132
+ - examples/test.rb
128
133
  - hoalife.gemspec
129
134
  - lib/hoal_inflector.rb
130
135
  - lib/hoalife.rb