Advertisement
Guest User

Untitled

a guest
Jan 14th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. module Cronenberg
  2. class Cronenberg::Connection
  3. def self.config
  4. Cronenberg::Config.new
  5. end
  6. binding.pry
  7.  
  8. def initialize(credentials_override=nil)
  9. binding.pry
  10. credentials_builtin = {
  11. host: config.host,
  12. user: config.user,
  13. password: config.password,
  14. insecure: config.insecure,
  15. ssl: config.ssl,
  16. }
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement