nexmo_rails 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/nexmo_rails/version.rb +1 -1
- data/lib/nexmo_rails.rb +5 -4
- 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: e1fc11a54c0b85140e8441fef8db83994e6077255c2628d844f51d42ce766250
|
4
|
+
data.tar.gz: b1e0e03378b59efb2814333ec95dbd5a1a24f7569dca3c3c3c984ab3a7a6664f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ddc6162e2f3f89e1ea59f28b65b6a5939a14a8fe11a1e5e3733612ea7e17c0929822789275df44c9ef428a0cca2d30dcebd77e76e0745328d3373a43dca683b
|
7
|
+
data.tar.gz: 1b202ac814244e97c04a6b0c3ac1e21d37cc5271916d54bad8d12111c3b8f4489c1b20aa976615ff0b01002b9a0d1be197853bade0ba8a8af29970445ff173a8
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Nexmo Rails Gem
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/nexmo_rails.svg)](https://badge.fury.io/rb/nexmo_rails)
|
4
|
+
|
3
5
|
This is the Nexmo Rails Gem for Nexmo's API. To use it you'll
|
4
6
|
need a Nexmo account. Sign up [for free at nexmo.com](https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL&utm_medium=github&utm_campaign=nexmo-rails).
|
5
7
|
|
@@ -75,4 +77,4 @@ More information on the Nexmo Ruby client library and how to use it with the Nex
|
|
75
77
|
|
76
78
|
## License
|
77
79
|
|
78
|
-
This project is under the [MIT License](LICENSE).
|
80
|
+
This project is under the [MIT License](LICENSE).
|
data/lib/nexmo_rails/version.rb
CHANGED
data/lib/nexmo_rails.rb
CHANGED
@@ -7,10 +7,11 @@ module Nexmo
|
|
7
7
|
|
8
8
|
attr_accessor :client
|
9
9
|
|
10
|
-
def_delegators :@client, :
|
11
|
-
:
|
12
|
-
:
|
13
|
-
|
10
|
+
def_delegators :@client, :account, :alerts, :applications, :calls,
|
11
|
+
:conversations, :conversions, :files, :messages,
|
12
|
+
:numbers, :number_insight, :pricing, :redact,
|
13
|
+
:secrets, :sms, :signature, :tfa, :verify
|
14
|
+
|
14
15
|
def setup
|
15
16
|
self.client = ::Nexmo::Client.new do |config|
|
16
17
|
yield config
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nexmo_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nexmo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|