Sha256: 10916c3b2c26ad5be5be4a4ae76fa4aea07244bc1b3676b67e3e62f3225a19dd

Contents?: true

Size: 871 Bytes

Versions: 54

Compression:

Stored size: 871 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::Google::Pubsub.new

  puts "Creating a topic"
  puts "----------------"
  topic = connection.topics.create(:name => "projects/#{connection.project}/topics/#{Fog::Mock.random_letters(16)}")

  puts "Getting a topic"
  puts "---------------"
  connection.topics.get(topic.name)

  puts "Listing all topics"
  puts "------------------"
  connection.topics.all

  puts "Publishing to topic"
  puts "-------------------"
  topic.publish(["test message"])

  puts "Delete the topic"
  puts "----------------"
  topic.destroy
end

test

Version data entries

54 entries across 54 versions & 2 rubygems

Version Path
fog-google-1.10.0 examples/pubsub/topics.rb
fog-google-1.9.1 examples/pubsub/topics.rb
fog-google-1.9.0 examples/pubsub/topics.rb
fog-google-1.8.2 examples/pubsub/topics.rb
fog-google-1.8.1 examples/pubsub/topics.rb
fog-google-1.8.0 examples/pubsub/topics.rb
fog-google-1.7.1 examples/pubsub/topics.rb
fog-google-1.7.0 examples/pubsub/topics.rb
fog-google-1.6.0 examples/pubsub/topics.rb
fog-google-1.5.0 examples/pubsub/topics.rb
fog-google-1.4.0 examples/pubsub/topics.rb
fog-google-1.3.3 examples/pubsub/topics.rb
fog-google-1.3.2 examples/pubsub/topics.rb
fog-google-1.3.1 examples/pubsub/topics.rb
fog-google-1.3.0 examples/pubsub/topics.rb
fog-google-1.2.2 examples/pubsub/topics.rb
fog-google-1.2.1 examples/pubsub/topics.rb
fog-google-1.2.0 examples/pubsub/topics.rb
fog-google-1.1.0 examples/pubsub/topics.rb
fog-google-1.0.1 examples/pubsub/topics.rb