Sha256: 0f39615fb02d6ba0b324ad05c652d7bf11221af4ebb7762d820702e98c6278cd
Contents?: true
Size: 663 Bytes
Versions: 21
Compression:
Stored size: 663 Bytes
Contents
module ModelSetup def self.included(base) base.class_eval do let(:configuration) do { :brightbox_auth_url => "http://localhost", :brightbox_api_url => "http://localhost", :brightbox_client_id => "", :brightbox_secret => "", :brightbox_username => "", :brightbox_password => "", :brightbox_account => "", :brightbox_default_image => "img-test", :brightbox_access_token => "FAKECACHEDTOKEN" } end let(:config) { Fog::Brightbox::Config.new(configuration) } let(:service) { Fog::Brightbox::Compute.new(config) } end end end
Version data entries
21 entries across 21 versions & 1 rubygems