Skip to content

Latest commit

 

History

History
executable file
·
36 lines (22 loc) · 767 Bytes

README.md

File metadata and controls

executable file
·
36 lines (22 loc) · 767 Bytes

Homeaway::Storm

A Ruby SDK to interact with Apache Storm

Installation

Add this line to your application's Gemfile:

gem 'homeaway-storm'

And then execute:

$ bundle

Or install it yourself as:

$ gem install homeaway-storm

Usage

    hostname = 'localhost'
    scheme = :http
    port = 28080
    @client = HomeAway::Storm::Client.new hostname, port: port, scheme: scheme
    puts "this Storm cluster has a web UI running on port #{@client.cluster_configuration['ui.port']}"

More detailed example usage is available in the accompanying tests that exist in the spec folder.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/homeaway/homeaway-storm.