Class: Travis::Config::Heroku::Url::Amqps

Inherits:
Amqp
  • Object
show all
Defined in:
lib/travis/config/heroku/url.rb

Overview

The amqps:// protocol needs to also pass along that it has SSL enabled for adapters such as march_hare

Instance Attribute Summary

Attributes inherited from Base

#database, #host, #password, #port, #username

Instance Method Summary collapse

Instance Method Details

#sslObject



29
30
31
# File 'lib/travis/config/heroku/url.rb', line 29

def ssl
  true
end

#to_hObject



33
34
35
# File 'lib/travis/config/heroku/url.rb', line 33

def to_h
  super.merge(ssl: ssl)
end