Sha256: c948181465068b60e21fe9ee4f99a423ea38389c283dbee41400ad7e911b9b4b

Contents?: true

Size: 1.06 KB

Versions: 5

Compression:

Stored size: 1.06 KB

Contents

flowdock
========

Ruby Gem for using the Flowdock API.

* http://www.flowdock.com/api

Compatibility
-------------

flowdock gem has been tested under Ruby 1.8.7.

Requirements
------------

* HTTParty

Install
-------

* gem install flowdock

Example
-------

  require 'flowdock'

  # create a new Flow object with target flow's api token and sender information
  flow = Flowdock::Flow.new(:api_token => "56188e2003e370c6efa9711988f7bf02", 
    :source => "myapp", 
    :from => {:name => "John Doe", :address => "john.doe@yourdomain.com"})

  # send message to the flow
  flow.send_message(:subject => "Greetings from Flowdock API Gem!", 
    :content => "<h2>It works!</h2><p>Now you can start developing your awesome application for Flowdock.</p>", 
    :tags => ["cool", "stuff"], :link => "http://www.flowdock.com/")
	 
API methods
-----------

* Flow methods

  send_message(params) - Send message to flow. See documentation for details: http://www.flowdock.com/help/api_documentation


Copyright
---------

Copyright (c) 2011 Flowdock Ltd. See MIT-LICENSE for further details.

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flowdock-0.1.5 README
flowdock-0.1.4 README
flowdock-0.1.3 README
flowdock-0.1.2 README
flowdock-0.1.1 README