emailverify 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81ab97eed6690176d532cd155fe2d5952ab4cf47887b8c0a16d0ff0605faf9c1
4
- data.tar.gz: ed2cd57e4596d1977b90941c259aa4e9444171ddb2978c4dfb144266201d1e1b
3
+ metadata.gz: f5993bff7fc2f2407e42c4ec17018460392c9cd0e9914707346bd5d477fc1333
4
+ data.tar.gz: e856255859237490116df156c9f038e4a3d6d55cb6362f97069cf558190968e5
5
5
  SHA512:
6
- metadata.gz: 9ae75962bb1ce322a1776bf17a59f6d56dc9fdc97ffe20c81c49dd43807ec9facf07a7712e75396ade2584653504ef4e79a0fbe3ad8f3d2865e75b973da64eea
7
- data.tar.gz: dd366392f16f460abc192d1c02c9598005b85b92fcb0ad9923e7788b3b820736b4fa78ecc6bced3dcd5c1abdae502b2c62ffea00c8865a539fbb00dcda15eb2e
6
+ metadata.gz: 1b0ad4ffd1d203e18c262a64c2400f9e0d538a5fcc56374a65d6b4f1651ea603b4cb37a2f1024236dd90528bb4f5a29660ebadbd97ca04b9e99a210ccea6c31b
7
+ data.tar.gz: e5c0d1d66acc30e68188b1d036a230672613f95aab7c5f6d59150ca194bfb5e6a986e2093c80634ae64788d26fc4bb1d6f7f69280d5c5f9df18823eb82498ba6
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Your Name
3
+ Copyright (c) 2025 Salman Aslam
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -79,3 +79,8 @@ Security
79
79
 
80
80
  Contributing
81
81
  Pull requests welcome. Run tests with `bundle install && bundle exec rake`.
82
+
83
+ ## License
84
+
85
+ Licensed under the [MIT](https://opensource.org/licenses/MIT) License — see the [LICENSE](./LICENSE) file for details.
86
+
data/emailverify.gemspec CHANGED
@@ -1,14 +1,15 @@
1
1
  # frozen_string_literal: true
2
+ require_relative "lib/emailverify/version"
2
3
 
3
4
  Gem::Specification.new do |spec|
4
5
  spec.name = "emailverify"
5
- spec.version = Emailverify::VERSION rescue "0.1.0"
6
- spec.authors = ["Salman Aslam"]
7
- spec.email = ["you@example.com"]
6
+ spec.version = Emailverify::VERSION rescue "0.1.1"
7
+ spec.authors = ["Clustox"]
8
+ spec.email = ["support@emailverify.io"]
8
9
 
9
10
  spec.summary = "Ruby wrapper for the EmailVerify.io API"
10
11
  spec.description = "A small, object-oriented Ruby client for the EmailVerify.io service."
11
- spec.homepage = "https://github.com/yourname/emailverify"
12
+ spec.homepage = "https://github.com/Clustox/emailverify-ruby"
12
13
  spec.license = "MIT"
13
14
 
14
15
  spec.required_ruby_version = '>= 2.7.0'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Emailverify
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/lib/emailverify.rb CHANGED
@@ -31,11 +31,11 @@ module Emailverify
31
31
  @request ||= Request.new(api_key: configuration.api_key, base_url: configuration.base_url, timeout: configuration.timeout)
32
32
  end
33
33
 
34
- def validate(email:, endpoint: nil)
34
+ def validate(email, endpoint: nil)
35
35
  request.validate(email, endpoint: endpoint)
36
36
  end
37
37
 
38
- def valid?(email:, endpoint: nil)
38
+ def valid?(email, endpoint: nil)
39
39
  request.valid?(email, endpoint: endpoint)
40
40
  end
41
41
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emailverify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Salman Aslam
7
+ - Clustox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-17 00:00:00.000000000 Z
11
+ date: 2025-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '3.0'
55
55
  description: A small, object-oriented Ruby client for the EmailVerify.io service.
56
56
  email:
57
- - you@example.com
57
+ - support@emailverify.io
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
@@ -69,7 +69,7 @@ files:
69
69
  - lib/emailverify/request.rb
70
70
  - lib/emailverify/response.rb
71
71
  - lib/emailverify/version.rb
72
- homepage: https://github.com/yourname/emailverify
72
+ homepage: https://github.com/Clustox/emailverify-ruby
73
73
  licenses:
74
74
  - MIT
75
75
  metadata: {}