Sha256: bbdf5ace82f37ac0647ce54d2a02d08103e84bb2bde3463e11de0c328329a8b4

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

Prowler
=======

This is a plugin for integrating apps with the Prowl iPhone application.

INSTALLATION

From your project's RAILS_ROOT, run:

  script/plugin install git://github.com/pixeltrix/prowler.git

CONFIGURATION

You should have something like this in config/initializers/prowler.rb.

  Prowler.configure do |config|
    config.api_key = 'ffffffffffffffffffffffffffffffffffffffff'
    config.application = 'www.example.com'
  end

You can test that Prowler is working in your production environment by using
this rake task (from RAILS_ROOT):

  rake prowler:test

If everything is configured properly the task will send a request to
prowl.weks.net which will be appear on your iPhone after a short delay.

USAGE

To use Prowler within your application just call the notify method, e.g.

  Prowler.notify "Event", "Description", Prowler::Priority::NORMAL

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
application as a general push notification application for your iPhone.

For more about the Prowl application see: http://prowl.weks.net/

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
pixeltrix-prowler-1.0.2 INSTALL
pixeltrix-prowler-1.0.2 README
pixeltrix-prowler-1.0.3 INSTALL
pixeltrix-prowler-1.0.3 README