monovm-whois-ruby 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +7 -2
- data/lib/monovm/whois/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffa991e790d4844ddb7d3b5e00019a1cefaf148a353aab038421e73762effda8
|
|
4
|
+
data.tar.gz: edc75ef603cff2a9d78970efd74b425295d871408d948be39c71f97308d56642
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4be08506df20693ffd5edea08f5035e8a8f773998885955883a2f71ae7fe8f97cbdfc54a9454a37eed3a985eaa7c46f75c1f1cf97ee58287b7461022088a69b9
|
|
7
|
+
data.tar.gz: d88174769405f8591ed9235d9bc91a603947ab71f1eba65031bf8858771ee950318b9a6a4893f06015166729b2e012935d2eb250645b3fa1fb11f4939bf80095
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project are documented here.
|
|
|
5
5
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this
|
|
6
6
|
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.1] - 2026-08-08
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- README: link to [monovm.com](https://monovm.com) and an About section.
|
|
13
|
+
|
|
8
14
|
## [1.0.0] - 2026-08-05
|
|
9
15
|
|
|
10
16
|
First release.
|
|
@@ -72,4 +78,5 @@ would answer "available". See the table in the README for the full list. The mai
|
|
|
72
78
|
- The bundled RDAP bootstrap snapshot was taken 2026-07-23 and can be refreshed with
|
|
73
79
|
`rake data:refresh_rdap`.
|
|
74
80
|
|
|
81
|
+
[1.0.1]: https://github.com/monovm/whois-ruby/releases/tag/v1.0.1
|
|
75
82
|
[1.0.0]: https://github.com/monovm/whois-ruby/releases/tag/v1.0.0
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Domain WHOIS and RDAP lookups for Ruby, with availability detection that says
|
|
4
4
|
"I don't know" instead of guessing.
|
|
5
5
|
|
|
6
|
-
No runtime dependencies.
|
|
6
|
+
No runtime dependencies. Built and maintained by [MonoVM](https://monovm.com).
|
|
7
7
|
|
|
8
8
|
```ruby
|
|
9
9
|
require "monovm-whois-ruby"
|
|
@@ -343,6 +343,11 @@ COVERAGE=1 bundle exec rspec
|
|
|
343
343
|
The offline suite never touches the network: HTTP is blocked by WebMock, and the
|
|
344
344
|
socket transport is exercised against a loopback server the spec starts itself.
|
|
345
345
|
|
|
346
|
+
## About MonoVM
|
|
347
|
+
|
|
348
|
+
This gem is developed by [MonoVM](https://monovm.com), a provider of domain
|
|
349
|
+
registration, VPS and dedicated server hosting.
|
|
350
|
+
|
|
346
351
|
## License
|
|
347
352
|
|
|
348
|
-
MIT. See [LICENSE](LICENSE).
|
|
353
|
+
MIT. See [LICENSE](LICENSE). Copyright © [MonoVM](https://monovm.com).
|
data/lib/monovm/whois/version.rb
CHANGED