README.md in peterosullivan-highrise-3.0.3 vs README.md in peterosullivan-highrise-3.0.4
- old
+ new
@@ -1,17 +1,20 @@
##Whats in this fork
This fork is very close to the orginal gem. I have added a few features and shortcut methods;
-
- Highrise::Tag.delete_by_name('tag_name')
-
Highrise::Person.url_for(123)
+ Highrise::Person.find(123).phone_number
+
+###Tag methods
+ Highrise::Tag.delete_by_name('tag_name')
Highrise::Person.find(123).tagged?('tag_name')
Highrise::Person.find(123).tagged_with_name('tag_name')
+
+###Email methods
Highrise::Person.find(123).email_address
+ Highrise::Person.find(123).email #alias for email_address
Highrise::Person.find(123).email_valid?
- Highrise::Person.find(123).phone_number
###Highrise Custom Fields read only (called "subject_datas" in the Highrise API)
p = Highrise::Person.find(123)
p.subject_data_fields #{"favourite_color"=>"red"}