google-apps-chat 1.1.1 → 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 +4 -4
- data/README.md +8 -0
- data/lib/google/apps/chat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8880a089a0bf5382eaeaddc180e80a5cc50b8f43f69ae061ffa355a233d2c80c
|
4
|
+
data.tar.gz: bed3c80b7fd9e44f4d73daa1ecdd40156ae618b8425f6864d14862d3ad5f98f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff5ed099b177e15a53413e8467ed977af8636f7a88877528debfefe69f23b345602d9eda8995b1bf15e10898b8f66c0634b9e702b655f261e34873142885d4cb
|
7
|
+
data.tar.gz: 3bc19cb3cb30997c38e7c38382ad8710f5d34b97689320bd4fed3d6ec9fa0403033e04250fc481026ca123def0c2e1fa12f316468bc986a31b9f8a0e4e1e3514
|
data/README.md
CHANGED
@@ -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
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apps-chat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -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.
|
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.
|