ChattyCrow/chattycrow_ruby

View on GitHub
lib/chatty_crow/request/hipchat.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ChattyCrow
  module Request
    # HipChat request
    class HipChat < BaseRequest
      def initialize(*args)
        super(*args)

        # If arguments exists set as body into options!
        # Its for just easy ChattyCrow.send_hipchat 'Hello'
        @options[:body] = @arguments_flatten if @arguments_flatten

        # Set payload
        @payload = @options
      end
    end
  end
end