crisp-api 1.1.8 → 1.1.10
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/.github/workflows/{publish.yml → build.yml} +0 -0
- data/README.md +5 -3
- data/crisp-api.gemspec +1 -1
- data/lib/crisp-api.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: c1492b534936fe90a085a39786b53e1e27455716226b7f7c1cfd5d8aaca42834
|
4
|
+
data.tar.gz: 20acf32bb4c32030d7d27d74b38049cc11a2abe66102b3ed229287def0a6836f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66a573d5ec60568e00b7ca0b4cab89a3fd060664c0e72945c7dc6ef603855b52cf9dc7eb6bb05cf2f33d15b5d085dfea7b28650ca5355eedc4843dcfe0604967
|
7
|
+
data.tar.gz: 676af19bfacedc35d607036aca95086c9a9f8fbac33600bce3ec88f4ddc75aef627dbacc54b2e1704379558163978e76bf9ad7e2ced93cda028ddcec172513f4
|
File without changes
|
data/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# Crisp API Wrapper
|
2
|
+
|
3
|
+
[](https://github.com/crisp-im/ruby-crisp-api/actions?query=workflow%3A%22Build+and+Release%22) [](https://rubygems.org/gems/crisp-api) [](https://rubygems.org/gems/crisp-api)
|
2
4
|
|
3
5
|
The Crisp API Ruby wrapper. Authenticate, send messages, fetch conversations, access your agent accounts from your Ruby code.
|
4
6
|
|
5
|
-
Copyright
|
7
|
+
Copyright 2023 Crisp IM SAS. See LICENSE for copying information.
|
6
8
|
|
7
9
|
* **📝 Implements**: [REST API Reference (V1)](https://docs.crisp.chat/references/rest-api/v1/) at revision: 12/31/2017
|
8
10
|
* **😘 Maintainer**: [@valeriansaliou](https://github.com/valeriansaliou), [@eliottvincent](https://github.com/eliottvincent)
|
@@ -14,7 +16,7 @@ You may follow the [REST API Quickstart](https://docs.crisp.chat/guides/rest-api
|
|
14
16
|
Add the library to your `Gemfile`:
|
15
17
|
|
16
18
|
```bash
|
17
|
-
gem "crisp-api", "~> 1.1.
|
19
|
+
gem "crisp-api", "~> 1.1.10"
|
18
20
|
```
|
19
21
|
|
20
22
|
Then, import it:
|
data/crisp-api.gemspec
CHANGED
data/lib/crisp-api.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crisp-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Valerian Saliou
|
@@ -30,7 +30,7 @@ executables: []
|
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files: []
|
32
32
|
files:
|
33
|
-
- ".github/workflows/
|
33
|
+
- ".github/workflows/build.yml"
|
34
34
|
- ".gitignore"
|
35
35
|
- EXAMPLES.md
|
36
36
|
- Gemfile
|