TODO: Write a gem description
Add this line to your application's Gemfile:
gem 'rendezvous'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rendezvous
require 'rendezvous'
require 'heroku-api'
require 'netrc'
username, api_key = Netrc.read['api.heroku.com']
heroku = Heroku::API.new(:api_key => api_key)
env = { 'TERM' => ENV['TERM'] }
begin
env['COLUMNS'] = `tput cols`.strip
env['LINES'] = `tput lines`.strip
rescue
end
data = heroku.post_ps(
'testable',
'bash',
{ :attach => true, :ps_env => env }
).body
Rendezvous.start(
:url => data['rendezvous_url']
)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request