README.md in phishtank-0.1.0 vs README.md in phishtank-0.1.1

- old
+ new

@@ -19,13 +19,13 @@ c.api_key = "YOUR_PHISHTANK_API_KEY" #required c.temp_directory = "/path/to/temporary/directory" #optional - default: /tmp c.etag = "ETag" #optional end - PhishTank.update! + PhishTank.update_feed! - data = PhishTank::Data.new + data = PhishTank::FeedData.new data.entries.first # => #<OpenStruct:0x1021026f8 # attr_reader :modifiable = true, # attr_reader :table = { @@ -39,10 +39,12 @@ # :online_status => "yes", # :target => "TAM Fidelidade" # } #> + PhishTank.search("http://www.google.com/") #=> false + PhishTank.search("http://suspiciousurl.com/") #=> OpenStruct w/ PhishTank details + Read specs for more details. ## TODO -* Add interface for [checking URL's](http://www.phishtank.com/api_info.php) -* Add errors for service-specific rate limiting errors \ No newline at end of file +You can see and contribute to the list of TODO items in [issues](https://github.com/ezkl/phishtank/issues?sort=created&labels=todo&direction=desc&state=open).