petfinder-wrap 1.0.2 → 1.0.2.1
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 +4 -1
- data/lib/petfinder-wrap.rb +1 -1
- data/lib/petfinder/json-mapper.rb +2 -0
- 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: d5c712696baf50637e3fe886553272e5c1cc305f
|
4
|
+
data.tar.gz: c4d747fc84d3cd994320f8ec6c0bc7e8682dc330
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f93727278b51da53dd45215af7bb7e99593b9476af7401aff97546d4af52e9271824632cb51a3986ab08990d97d7610b9c09344c1e2d8ac050f7f7c805fa278
|
7
|
+
data.tar.gz: 8d3d5d8d67d0a49560cb6d4801a81d1b6ec344417d3aafbac8be22e31998c13509e986040688f686aa7636c8b9092ceb6022a508b61526ccc729d99230bc1568
|
data/README.md
CHANGED
@@ -45,8 +45,11 @@ Additionally, try methods like
|
|
45
45
|
```ruby
|
46
46
|
pet = client.find_pet("38747365")
|
47
47
|
pet.name # => returns the pet's name
|
48
|
-
pet.contact # => returns a hash of contact info
|
49
48
|
pet.photos # => returns an array of Photo objects, with multiple size urls accessible by .small, .medium, .large, .thumbnail, .tiny
|
49
|
+
pet.phone
|
50
|
+
pet.address1
|
51
|
+
pet.city
|
52
|
+
pet.zip
|
50
53
|
```
|
51
54
|
the same should function for shelters.
|
52
55
|
|
data/lib/petfinder-wrap.rb
CHANGED