webscraping_ai 4.0.0 → 4.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 +6 -0
- data/README.md +19 -2
- data/lib/webscraping_ai/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e312f29ac8666f33be3757599d08f062908be2a1a815973cc591d2cce44a4f4e
|
|
4
|
+
data.tar.gz: 6cb641d229bdf754fba1ffb2f717bc40db8bcad50158d6fc960d3d6de7448480
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d6838f0b67bf4426e2b1c6f48d5047fe4413c3d1e342e576aedc4a8df755f2fe4b591ccf747e8df955690d66ebe3ebf5b95747cc93794fa8fe0d90572050d19
|
|
7
|
+
data.tar.gz: 4d3966a1b3e7d4bd2b4a51cb1011f991ba43fc21f760fcce3496427af68256a5d2e45587089fc95e726f400577078935f83a178abd18c864f06da9312d29908e
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. This project follows [Semantic Versioning](https://semver.org/).
|
|
4
4
|
|
|
5
|
+
## 4.0.1 — 2026-07-17
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Documentation: expanded README — API docs, signup/dashboard links, badges, and links to the other official clients.
|
|
10
|
+
|
|
5
11
|
## [4.0.0] - Unreleased
|
|
6
12
|
|
|
7
13
|
### Changed
|
data/README.md
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
# WebScraping.AI Ruby Client
|
|
2
2
|
|
|
3
|
-
Official Ruby client for the [WebScraping.AI](https://webscraping.ai) API. Provides LLM-powered web scraping with Chromium JavaScript rendering, rotating proxies, and built-in HTML parsing.
|
|
4
|
-
|
|
5
3
|
[](https://rubygems.org/gems/webscraping_ai)
|
|
4
|
+
[](https://github.com/webscraping-ai/webscraping-ai-ruby/actions/workflows/ci.yml)
|
|
5
|
+
|
|
6
|
+
Official Ruby client for the [WebScraping.AI](https://webscraping.ai) API —
|
|
7
|
+
web scraping with Chromium JavaScript rendering, rotating
|
|
8
|
+
datacenter/residential/stealth proxies, and AI-powered question answering and
|
|
9
|
+
structured field extraction on any page. See the
|
|
10
|
+
[API documentation](https://webscraping.ai/docs) for the full parameter reference.
|
|
6
11
|
|
|
7
12
|
## Installation
|
|
8
13
|
|
|
@@ -21,6 +26,10 @@ Requires Ruby 3.1+.
|
|
|
21
26
|
|
|
22
27
|
## Quick start
|
|
23
28
|
|
|
29
|
+
[Sign up](https://webscraping.ai/auth/sign_up) to get an API key — the free
|
|
30
|
+
trial includes 2,000 credits, no credit card required. Your key lives in the
|
|
31
|
+
[dashboard](https://webscraping.ai/dashboard).
|
|
32
|
+
|
|
24
33
|
```ruby
|
|
25
34
|
require "webscraping_ai"
|
|
26
35
|
|
|
@@ -148,6 +157,14 @@ bundle exec rspec
|
|
|
148
157
|
bundle exec rubocop
|
|
149
158
|
```
|
|
150
159
|
|
|
160
|
+
## Links
|
|
161
|
+
|
|
162
|
+
- [WebScraping.AI](https://webscraping.ai) — features, pricing, signup
|
|
163
|
+
- [API documentation](https://webscraping.ai/docs)
|
|
164
|
+
- [Dashboard](https://webscraping.ai/dashboard) — API key, usage, request builder
|
|
165
|
+
- Other official clients: [Python](https://github.com/webscraping-ai/webscraping-ai-python) · [JavaScript](https://github.com/webscraping-ai/webscraping-ai-js) · [PHP](https://github.com/webscraping-ai/webscraping-ai-php) · [Go](https://github.com/webscraping-ai/webscraping-ai-go) · [Java](https://github.com/webscraping-ai/webscraping-ai-java) · [.NET](https://github.com/webscraping-ai/webscraping-ai-dotnet) · [CLI](https://github.com/webscraping-ai/webscraping-ai-cli) · [MCP server](https://github.com/webscraping-ai/webscraping-ai-mcp-server) · [n8n node](https://github.com/webscraping-ai/webscraping-ai-n8n)
|
|
166
|
+
- Support: [support@webscraping.ai](mailto:support@webscraping.ai)
|
|
167
|
+
|
|
151
168
|
## License
|
|
152
169
|
|
|
153
170
|
MIT — see [LICENSE](LICENSE).
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webscraping_ai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- WebScraping.AI
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: faraday
|
|
@@ -53,7 +52,6 @@ metadata:
|
|
|
53
52
|
changelog_uri: https://github.com/webscraping-ai/webscraping-ai-ruby/blob/master/CHANGELOG.md
|
|
54
53
|
documentation_uri: https://webscraping.ai/docs/api
|
|
55
54
|
rubygems_mfa_required: 'true'
|
|
56
|
-
post_install_message:
|
|
57
55
|
rdoc_options: []
|
|
58
56
|
require_paths:
|
|
59
57
|
- lib
|
|
@@ -68,8 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
68
66
|
- !ruby/object:Gem::Version
|
|
69
67
|
version: '0'
|
|
70
68
|
requirements: []
|
|
71
|
-
rubygems_version:
|
|
72
|
-
signing_key:
|
|
69
|
+
rubygems_version: 4.0.16
|
|
73
70
|
specification_version: 4
|
|
74
71
|
summary: Ruby client for the WebScraping.AI API.
|
|
75
72
|
test_files: []
|