whoosh-ruby 0.1.4 → 0.1.5
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 +2 -2
- data/lib/twilio-ruby/base/client_base.rb +1 -1
- data/lib/twilio-ruby/rest/api_base.rb +2 -2
- data/lib/twilio-ruby/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: abec584464f5a69ea60a19636d83b67995eae02b323275336948e1caaf5999bb
|
|
4
|
+
data.tar.gz: 56d28bad5487d9ad615780bffb8a2c90747f676dd4f18e450508fe261ee7d752
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11268005ba563fa2ea005b72a916e469240b23109fafd05e9b56a12afcfe0c21a87ca718bc606ac00de7347455bb55e9d046d28d9b4edacaa4409e3e5cf9e5f8
|
|
7
|
+
data.tar.gz: c7d291161a79822b4534d9f63073d82bd1eda2b9ec811f004e49ad8f8b4832694f53a54fa48878cca1c321cb77d85f9be4a8b9f4a9e08e3c6da52e5dd210b51c
|
data/README.md
CHANGED
|
@@ -21,13 +21,13 @@ This library supports the following Ruby implementations:
|
|
|
21
21
|
To install using [Bundler][bundler] grab the latest stable version:
|
|
22
22
|
|
|
23
23
|
```ruby
|
|
24
|
-
gem 'whoosh-ruby', '~> 0.1.
|
|
24
|
+
gem 'whoosh-ruby', '~> 0.1.5'
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
To manually install `whoosh-ruby` via [Rubygems][rubygems] simply gem install:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
gem install whoosh-ruby -v 0.1.
|
|
30
|
+
gem install whoosh-ruby -v 0.1.5
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
> **Info**
|
|
@@ -99,7 +99,7 @@ module Twilio
|
|
|
99
99
|
##
|
|
100
100
|
# Validate the new SSL certificate for the Twilio API
|
|
101
101
|
def validate_ssl_certificate
|
|
102
|
-
response = request('api.whoosh.
|
|
102
|
+
response = request('api.whoosh.totogi.solutions', '8443', 'GET', 'https://api.whoosh.totogi.solutions:8443/.json')
|
|
103
103
|
return unless response.status_code < 200 || response.status_code >= 300
|
|
104
104
|
|
|
105
105
|
raise RestError.new 'Unexpected response from certificate endpoint', response
|
|
@@ -18,8 +18,8 @@ module Twilio
|
|
|
18
18
|
#
|
|
19
19
|
def initialize(twilio)
|
|
20
20
|
super(twilio)
|
|
21
|
-
@base_url = "https://api.whoosh.
|
|
22
|
-
@host = "api.whoosh.
|
|
21
|
+
@base_url = "https://api.whoosh.totogi.solutions"
|
|
22
|
+
@host = "api.whoosh.totogi.solutions"
|
|
23
23
|
@port = 443
|
|
24
24
|
@v2010 = nil
|
|
25
25
|
end
|
data/lib/twilio-ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: whoosh-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Totogi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jwt
|