README in pixeltrix-prowler-1.0.3 vs README in pixeltrix-prowler-1.1.0
- old
+ new
@@ -30,9 +30,26 @@
To use Prowler within your application just call the notify method, e.g.
Prowler.notify "Event", "Description", Prowler::Priority::NORMAL
+If you need to send to multiple accounts from within a single application you
+can create an instance of the Prowler class to override the global settings, e.g.
+
+ prowler = Prowler.new('apikey', 'application')
+ prowler.notify "Event", "Description", Prowler::Priority::NORMAL
+
+If performance is a concern then there is built in support for Delayed::Job.
+This can done either on a global basis, e.g.
+
+ Prowler.configure do |config|
+ config.delayed = true
+ end
+
+or on a individual message basis, e.g.
+
+ Prowler.notify "Event", "Description", Prowler::Priority::NORMAL, true
+
ABOUT
Prowler relies upon the Prowl iPhone application which is advertised as
a Growl notification forwarder from your Mac. However they provide an API
which can be called by a generic script which allows you to use the