google-apps-chat 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a1737af1cd13a3969ada8a6b8cbc6d196e31ea682743d030145ec750cd8ebe7
4
- data.tar.gz: d90066e09baa2aa48849178e2800ae33c97a270a894ee60e8e0f46f8d1c14785
3
+ metadata.gz: 8880a089a0bf5382eaeaddc180e80a5cc50b8f43f69ae061ffa355a233d2c80c
4
+ data.tar.gz: bed3c80b7fd9e44f4d73daa1ecdd40156ae618b8425f6864d14862d3ad5f98f2
5
5
  SHA512:
6
- metadata.gz: b82ce838d0281608adf599c9682d024b52ab6b4385079fe727cc125a5112a81d325772f00d4380cc1a71cfea2702793a26b7fc36d193858e9a27a83c6fbfbdb8
7
- data.tar.gz: cebac9179b2d2c5e0d3980ce5469ce4c95a70805b2d3547c3c894ed4d4fa95182992a684b9d0744456bb7a9f3e7a61b2eca6d7e79b4f914aadce75c7f3d421d5
6
+ metadata.gz: ff5ed099b177e15a53413e8467ed977af8636f7a88877528debfefe69f23b345602d9eda8995b1bf15e10898b8f66c0634b9e702b655f261e34873142885d4cb
7
+ data.tar.gz: 3bc19cb3cb30997c38e7c38382ad8710f5d34b97689320bd4fed3d6ec9fa0403033e04250fc481026ca123def0c2e1fa12f316468bc986a31b9f8a0e4e1e3514
data/README.md CHANGED
@@ -7,7 +7,7 @@ The Google Chat API lets you build Chat apps to integrate your services with Goo
7
7
  Actual client classes for the various versions of this API are defined in
8
8
  _versioned_ client gems, with names of the form `google-apps-chat-v*`.
9
9
  The gem `google-apps-chat` is the main client library that brings the
10
- verisoned gems in as dependencies, and provides high-level methods for
10
+ versioned gems in as dependencies, and provides high-level methods for
11
11
  constructing clients. More information on versioned clients can be found below
12
12
  in the section titled *Which client should I use?*.
13
13
 
@@ -34,6 +34,14 @@ In order to use this library, you first need to go through the following steps:
34
34
  1. [Enable the API.](https://console.cloud.google.com/apis/library/chat.googleapis.com)
35
35
  1. {file:AUTHENTICATION.md Set up authentication.}
36
36
 
37
+ ```ruby
38
+ require "google/apps/chat"
39
+
40
+ client = Google::Apps::Chat.chat_service
41
+ request = ::Google::Apps::Chat::V1::CreateMessageRequest.new # (request fields as keyword arguments...)
42
+ response = client.create_message request
43
+ ```
44
+
37
45
  ## Debug Logging
38
46
 
39
47
  This library comes with opt-in Debug Logging that can help you troubleshoot
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Apps
22
22
  module Chat
23
- VERSION = "1.1.0"
23
+ VERSION = "1.1.2"
24
24
  end
25
25
  end
26
26
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apps-chat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apps-chat-v1
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.6.2
78
+ rubygems_version: 3.6.9
79
79
  specification_version: 4
80
80
  summary: The Google Chat API lets you build Chat apps to integrate your services with
81
81
  Google Chat and manage Chat resources such as spaces, members, and messages.