如何将文件附加到 ruby hipchat 消息?

How to attach files to ruby hipchat messages?

我想使用 ruby hipchat-rb gem 通过 hipchat 发送文本文件。 gem 的自述文件中似乎没有描述执行此操作的方法。可以这样做吗?

有效解决方案:

#!/usr/bin/env ruby
require 'hipchat'

client = HipChat::Client.new('HIPCHAT_TOKEN', :api_version => 'v2', :server_url => 'HIPCHAT_URL')
client.user('some_username').send_file('message', File.open('some-file.txt') )