1# This build file includes a target for the Ruby wrapper library for 2# google-area120-tables. 3 4# This is an API workspace, having public visibility by default makes perfect sense. 5package(default_visibility = ["//visibility:public"]) 6 7# Export yaml configs. 8exports_files(glob(["*.yaml"])) 9 10load( 11 "@com_google_googleapis_imports//:imports.bzl", 12 "ruby_cloud_gapic_library", 13 "ruby_gapic_assembly_pkg", 14) 15 16# Generates a Ruby wrapper client for area120tables. 17# Ruby wrapper clients are versionless, but are generated from source protos 18# for a particular service version, v1alpha1 in this case. 19ruby_cloud_gapic_library( 20 name = "area120tables_ruby_wrapper", 21 srcs = ["//google/area120/tables/v1alpha1:tables_proto_with_info"], 22 extra_protoc_parameters = [ 23 "ruby-cloud-gem-name=google-area120-tables", 24 "ruby-cloud-env-prefix=AREA120_TABLES", 25 "ruby-cloud-wrapper-of=v1alpha1:0.7", 26 "ruby-cloud-product-url=https://tables.area120.google.com/u/0/about#/", 27 "ruby-cloud-api-id=area120tables.googleapis.com", 28 "ruby-cloud-api-shortname=area120tables", 29 ], 30 ruby_cloud_description = "Using the Area 120 Tables API, you can query for tables, and update/create/delete rows within tables programmatically.", 31 ruby_cloud_title = "Area 120 Tables", 32 transport = "grpc+rest", 33) 34 35# Open Source package. 36ruby_gapic_assembly_pkg( 37 name = "google-area120-tables-ruby", 38 deps = [ 39 ":area120tables_ruby_wrapper", 40 ], 41) 42