nexmo 7.2.0 → 7.2.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -0
  3. data/lib/nexmo/version.rb +1 -1
  4. data/nexmo.gemspec +11 -0
  5. metadata +12 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad124eb0e0e93884dc48ed8257b977c2cc365b19668326751d0fa9c0dd843696
4
- data.tar.gz: a7e1dae46b7e4c9d86b49fa51f6e74679ec1df56d55961e81e1a8d12b1831f29
3
+ metadata.gz: 447ff8e3327707d746fe73ec09ea76c18bc42a7dbfe90a3ce149428503a647e4
4
+ data.tar.gz: 54695afb4d4d5cd4a8198ed96eea0cb96667ac837c3eeff62cf1693d7d67f055
5
5
  SHA512:
6
- metadata.gz: 4de53e3319290efe704e16603a09aa79af15cc47aaf75f539e1e442b040d6e86f7427e6a412702c0557cd1d43c1ee8b31b38e71646ac615766277ed63caa590c
7
- data.tar.gz: 57c846af9f53f5537a6aeda3d588e36c6ef41c273f18640fe2214e37428ecd8d5ba7cfe91b619fc5035c43b0847a9507d97b9b036aa3fc1d6bb6b67bf975601f
6
+ metadata.gz: 87a65424751d0d892fdfbfe76c3536aac6d048779af3cadcaa11b12acd67d460411de36cfd17ea546131e6d0a4360be16f379573f077cec7654a860d6a3ceed6
7
+ data.tar.gz: 0dfe4f3086fa2ddaf88784d9af0e8ed87aaf363d496feed3be993d24058699d61ae093cfedadaf7852f336e8385e00db08f4d51504260f8f8eadcab63bdf1f13
data/README.md CHANGED
@@ -4,6 +4,9 @@
4
4
 
5
5
  <img src="https://developer.nexmo.com/assets/images/Vonage_Nexmo.svg" height="48px" alt="Nexmo is now known as Vonage" />
6
6
 
7
+ |<p align="left">:exclamation: This SDK and Ruby gem have moved! It is now [`vonage`](https://rubygems.org/gems/vonage), located at [vonage/vonage-ruby-sdk](https://github.com/vonage/vonage-ruby-sdk). <br /><br /> We will support this repository for 12 months, ending October 2021, with any needed bug or security fixes for the last release of v7.2.1. New features will be released under `vonage`, so to take advantage of those please make sure to switch to `vonage` as soon as possible so you don't miss out!</p> |
8
+ |-----------------------------------------|
9
+
7
10
  This is the Ruby client library for Nexmo's API. To use it you'll
8
11
  need a Nexmo account. Sign up [for free at nexmo.com][signup].
9
12
 
@@ -15,6 +18,8 @@ need a Nexmo account. Sign up [for free at nexmo.com][signup].
15
18
  * [JWT authentication](#jwt-authentication)
16
19
  * [Webhook signatures](#webhook-signatures)
17
20
  * [Documentation](#documentation)
21
+ * [Frequently Asked Questions](#frequently-asked-questions)
22
+ * [Supported APIs](#supported-apis)
18
23
  * [License](#license)
19
24
 
20
25
 
@@ -155,6 +160,31 @@ Nexmo Ruby code examples: https://github.com/Nexmo/nexmo-ruby-code-snippets
155
160
 
156
161
  Nexmo API reference: https://developer.nexmo.com/api
157
162
 
163
+ ## Frequently Asked Questions
164
+
165
+ ## Supported APIs
166
+
167
+ The following is a list of Vonage APIs and whether the Ruby SDK provides support for them:
168
+
169
+ | API | API Release Status | Supported?
170
+ |----------|:---------:|:-------------:|
171
+ | Account API | General Availability |✅|
172
+ | Alerts API | General Availability |✅|
173
+ | Application API | General Availability |✅|
174
+ | Audit API | Beta |❌|
175
+ | Conversation API | Beta |❌|
176
+ | Dispatch API | Beta |❌|
177
+ | External Accounts API | Beta |❌|
178
+ | Media API | Beta | ❌|
179
+ | Messages API | Beta |❌|
180
+ | Number Insight API | General Availability |✅|
181
+ | Number Management API | General Availability |✅|
182
+ | Pricing API | General Availability |✅|
183
+ | Redact API | Developer Preview |✅|
184
+ | Reports API | Beta |❌|
185
+ | SMS API | General Availability |✅|
186
+ | Verify API | General Availability |✅|
187
+ | Voice API | General Availability |✅|
158
188
 
159
189
  ## License
160
190
 
@@ -1,5 +1,5 @@
1
1
  # typed: strong
2
2
 
3
3
  module Nexmo
4
- VERSION = '7.2.0'
4
+ VERSION = '7.2.1'
5
5
  end
@@ -17,6 +17,17 @@ Gem::Specification.new do |s|
17
17
  s.add_dependency('sorbet-runtime', '~> 0.5')
18
18
  s.add_development_dependency('timecop', '~> 0.9')
19
19
  s.require_path = 'lib'
20
+ s.post_install_message = <<~HEREDOC
21
+ This Ruby gem has moved to `vonage`!
22
+
23
+ We will support this last release of `nexmo` through October 2021 with any needed bug fixes or security fixes.
24
+
25
+ New features will only be relased under the new `vonage` gem, so make sure to switch as soon as you can.
26
+
27
+ To switch now, change your dependency in your `Gemfile` to `vonage` or run `gem install vonage` from the command line.
28
+
29
+ You can find more information on GitHub at https://github.com/Vonage/vonage-ruby-sdk.
30
+ HEREDOC
20
31
  s.metadata = {
21
32
  'homepage' => 'https://github.com/Nexmo/nexmo-ruby',
22
33
  'source_code_uri' => 'https://github.com/Nexmo/nexmo-ruby',
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nexmo
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.0
4
+ version: 7.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nexmo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-27 00:00:00.000000000 Z
11
+ date: 2020-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nexmo-jwt
@@ -146,7 +146,16 @@ metadata:
146
146
  bug_tracker_uri: https://github.com/Nexmo/nexmo-ruby/issues
147
147
  changelog_uri: https://github.com/Nexmo/nexmo-ruby/blob/master/CHANGES.md
148
148
  documentation_uri: https://www.rubydoc.info/github/nexmo/nexmo-ruby
149
- post_install_message:
149
+ post_install_message: |
150
+ This Ruby gem has moved to `vonage`!
151
+
152
+ We will support this last release of `nexmo` through October 2021 with any needed bug fixes or security fixes.
153
+
154
+ New features will only be relased under the new `vonage` gem, so make sure to switch as soon as you can.
155
+
156
+ To switch now, change your dependency in your `Gemfile` to `vonage` or run `gem install vonage` from the command line.
157
+
158
+ You can find more information on GitHub at https://github.com/Vonage/vonage-ruby-sdk.
150
159
  rdoc_options: []
151
160
  require_paths:
152
161
  - lib