Sha256: 0359463bd9d2af181065a175a8be8850529c6f7b8549d4746d976162428adfcd

Contents?: true

Size: 557 Bytes

Versions: 16

Compression:

Stored size: 557 Bytes

Contents

# All examples presume that you have a ~/.fog credentials file set up.
# More info on it can be found here: http://fog.io/about/getting_started.html

require "bundler"
Bundler.require(:default, :development)
# Uncomment this if you want to make real requests to GCE (you _will_ be billed!)
# WebMock.disable!

def test
  connection = Fog::Compute.new(:provider => "Google")

  server = connection.servers.bootstrap

  raise "Could not bootstrap sshable server." unless server.ssh("whoami")
  raise "Could not delete server." unless server.destroy
end

test

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
fog-google-1.5.0 examples/bootstrap.rb
fog-google-1.4.0 examples/bootstrap.rb
fog-google-1.3.3 examples/bootstrap.rb
fog-google-1.3.2 examples/bootstrap.rb
fog-google-1.3.1 examples/bootstrap.rb
fog-google-1.3.0 examples/bootstrap.rb
fog-google-1.2.2 examples/bootstrap.rb
fog-google-1.2.1 examples/bootstrap.rb
fog-google-1.2.0 examples/bootstrap.rb
fog-google-1.1.0 examples/bootstrap.rb
fog-google-1.0.1 examples/bootstrap.rb
fog-google-1.0.0 examples/bootstrap.rb
fog-google-0.6.0 examples/bootstrap.rb
fog-google-0.5.5 examples/bootstrap.rb
fog-google-0.5.4 examples/bootstrap.rb
fog-google-0.5.3 examples/bootstrap.rb