cloudmersive-spam-detection-api-client 2.4.1 → 2.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43118e3c22c9dde6a27a06d94420d8c04773d40d46f70d9a4bc1bf33e9fdd3bd
4
- data.tar.gz: 0a9aaf253388aaf786ad14ad00a5dbc280e1783432d7dee7343b69de69fd90d0
3
+ metadata.gz: d5f643c1c15ac19bd6f02500de548d18f4ea4b71bfa1b055a43838b5e634db2e
4
+ data.tar.gz: aed16062991fc43fe570a990f315b6920e9aabcd43a1299e233d7c028a6f2648
5
5
  SHA512:
6
- metadata.gz: 4d7d3f0428640f0c50fe5a83ffcfb155f83ded9b99525b83c7129a0d9c7becf4f7cf4089b17c033d54d61ad7d223a8104f920642e3107fd9f411e221b8762fcd
7
- data.tar.gz: 49772a9cac003efbfc17d75993dcb3cfb53675e53ea5c479a6731c181c36eb8d3362d9637798bf00b0e7c9fb3496e9274a1ad1093e9b1732b3284dc19c1fcf2a
6
+ metadata.gz: 3fda955f06ecbbf1d458734e7a965ce8b79ccc16173468aa286ea6a3f9a57d3d2b940e0ef2fe0f17f17790587bff17f0393d8230a62333a3c23bb1a5ce3d3a1a
7
+ data.tar.gz: 3ef5453f210296b80507d758b55d3af6c903faf060e6a4c0164afbc7dc7d46abfa0caa93bc73112c446d2a4caf221297b044481aaf7fa1b68f41f28368040bcb
data/README.md CHANGED
@@ -7,7 +7,7 @@ Easily and directly scan and block spam security threats in input.
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: v1
10
- - Package version: 2.4.1
10
+ - Package version: 2.4.2
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
 
13
13
  ## Installation
@@ -23,15 +23,15 @@ gem build cloudmersive-spam-detection-api-client.gemspec
23
23
  Then either install the gem locally:
24
24
 
25
25
  ```shell
26
- gem install ./cloudmersive-spam-detection-api-client-2.4.1.gem
26
+ gem install ./cloudmersive-spam-detection-api-client-2.4.2.gem
27
27
  ```
28
- (for development, run `gem install --dev ./cloudmersive-spam-detection-api-client-2.4.1.gem` to install the development dependencies)
28
+ (for development, run `gem install --dev ./cloudmersive-spam-detection-api-client-2.4.2.gem` to install the development dependencies)
29
29
 
30
30
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
31
31
 
32
32
  Finally add this to the Gemfile:
33
33
 
34
- gem 'cloudmersive-spam-detection-api-client', '~> 2.4.1'
34
+ gem 'cloudmersive-spam-detection-api-client', '~> 2.4.2'
35
35
 
36
36
  ### Install from Git
37
37
 
@@ -86,7 +86,7 @@ end
86
86
 
87
87
  ## Documentation for API Endpoints
88
88
 
89
- All URIs are relative to *https://localhost*
89
+ All URIs are relative to *https://api.cloudmersive.com*
90
90
 
91
91
  Class | Method | HTTP request | Description
92
92
  ------------ | ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # CloudmersiveSpamDetectionApiClient::SpamDetectionApi
2
2
 
3
- All URIs are relative to *https://localhost*
3
+ All URIs are relative to *https://api.cloudmersive.com*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -129,7 +129,7 @@ module CloudmersiveSpamDetectionApiClient
129
129
 
130
130
  def initialize
131
131
  @scheme = 'https'
132
- @host = ''
132
+ @host = 'api.cloudmersive.com'
133
133
  @base_path = ''
134
134
  @api_key = {}
135
135
  @api_key_prefix = {}
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.14
11
11
  =end
12
12
 
13
13
  module CloudmersiveSpamDetectionApiClient
14
- VERSION = '2.4.1'
14
+ VERSION = '2.4.2'
15
15
  end
@@ -18,7 +18,7 @@ describe CloudmersiveSpamDetectionApiClient::Configuration do
18
18
  before(:each) do
19
19
  # uncomment below to setup host and base_path
20
20
  # require 'URI'
21
- # uri = URI.parse("https://localhost")
21
+ # uri = URI.parse("https://api.cloudmersive.com")
22
22
  # CloudmersiveSpamDetectionApiClient.configure do |c|
23
23
  # c.host = uri.host
24
24
  # c.base_path = uri.path
@@ -28,14 +28,14 @@ describe CloudmersiveSpamDetectionApiClient::Configuration do
28
28
  describe '#base_url' do
29
29
  it 'should have the default value' do
30
30
  # uncomment below to test default value of the base path
31
- # expect(config.base_url).to eq("https://localhost")
31
+ # expect(config.base_url).to eq("https://api.cloudmersive.com")
32
32
  end
33
33
 
34
34
  it 'should remove trailing slashes' do
35
35
  [nil, '', '/', '//'].each do |base_path|
36
36
  config.base_path = base_path
37
37
  # uncomment below to test trailing slashes
38
- # expect(config.base_url).to eq("https://localhost")
38
+ # expect(config.base_url).to eq("https://api.cloudmersive.com")
39
39
  end
40
40
  end
41
41
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudmersive-spam-detection-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.1
4
+ version: 2.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudmersive
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-18 00:00:00.000000000 Z
11
+ date: 2026-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus