Sha256: 60ca2ddbc121786a831db9434f98f27008e60634e12bbf0d01c400cff1dd2b17

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

# Copyright 2016 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


require "google/cloud"

Gcloud = Google::Cloud

##
# # Gcloud
#
# #### The `gcloud` gem and `Gcloud` namespace are now deprecated.
#
# The current `gcloud` gem exists only to facilitate the timely transition of
# legacy code from the deprecated `Gcloud` namespace to the new `Google::Cloud`
# namespace. Please see the top-level project [README](../README.md) for current
# information about using the `google-cloud` umbrella gem and the individual
# service gems.
#
# This module exists to facilitate the transition of legacy code using the
# `Gcloud` namespace to the current `Google::Cloud` namespace.
#
# ## BigQuery Example
#
# ```ruby
# require "gcloud"
#
# gcloud = Gcloud.new
# bigquery = gcloud.bigquery
# dataset = bigquery.dataset "my-dataset"
# table = dataset.table "my-table"
# table.data.each do |row|
#   puts row
# end
# ```
#
module Gcloud
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gcloud-0.24.0 lib/gcloud.rb
gcloud-0.23.4 lib/gcloud.rb
gcloud-0.23.3 lib/gcloud.rb
gcloud-0.23.2 lib/gcloud.rb
gcloud-0.23.1 lib/gcloud.rb