petfinder-wrap 1.0.2.1 → 1.0.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 +4 -4
- data/README.md +5 -4
- data/lib/petfinder-wrap.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be970554bc2f200e07d158c15aee17718be772a7
|
4
|
+
data.tar.gz: e3848ebbf2b22b2e94dde6245162994140034873
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2994500fa6b708894bc31b9abc3f81ba6ae66a91a58c5f0157f869f726577566223a669090062ef2b951156fd976c7178325af7eeba42ebef9fb9d46cfaa2b88
|
7
|
+
data.tar.gz: 866d9578f2285493f1da00adbf35d9adbc583a80b8f932d42b9ac9941456ea222b36676049ffe7f68c0705c7f59a7672875223713c759047a89d9f8fc96ae153
|
data/README.md
CHANGED
@@ -46,10 +46,11 @@ Additionally, try methods like
|
|
46
46
|
pet = client.find_pet("38747365")
|
47
47
|
pet.name # => returns the pet's name
|
48
48
|
pet.photos # => returns an array of Photo objects, with multiple size urls accessible by .small, .medium, .large, .thumbnail, .tiny
|
49
|
-
pet.
|
50
|
-
pet.
|
51
|
-
pet.
|
52
|
-
pet.
|
49
|
+
pet.contact_info # => returns a hash of callable method names for contact info
|
50
|
+
pet.phone # => returns the phone # associated with this pet
|
51
|
+
pet.address1 # => returns the address associated with this pet
|
52
|
+
pet.city # => returns the city
|
53
|
+
pet.zip # => returns the postal code
|
53
54
|
```
|
54
55
|
the same should function for shelters.
|
55
56
|
|
data/lib/petfinder-wrap.rb
CHANGED