context.dev 0.4.0 → 1.0.0

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: 9d135a3a7a66e732d5809538a672f4f3ec1c4562019235e2b9dedf6ab6957209
4
- data.tar.gz: d2af40fda8155d75867e641b825b9b6c90901c5f49612e5cc5c951d3b70d81bd
3
+ metadata.gz: ce18332b3f13961ff9ad6786e5bd9b70ce0e8fdac85e9b9fa96464d92d216912
4
+ data.tar.gz: 8d3fee6ed1a2234af48f4708eef681a15f09bd4abe808826151884dd2436e981
5
5
  SHA512:
6
- metadata.gz: 8cd3d9204c84b3a288179e8974e003abbc6d60994d06577ea8f8e49b8d1f3340bdb62ec21cec9b9d8d633105acf22aad41e16ab288159d2d6bb095445801d3ab
7
- data.tar.gz: e3e146ce74f8c8aeef7d684a776be0c92b5d99d53789881f8398e5ac4aaae33bc56b58b279674eeb9852bea5f28d5eb7ddc52dfff475c9fb1530a16a885e1b3f
6
+ metadata.gz: a3ca40512236273d4e58a969c8ec3beabf09b4e0ed93eeeeb2295fc9e0ae3fdc740f5b7ab24bf9425ab5411280c4eb900aed05b6bde0b7038b2e7fedfdd2838e
7
+ data.tar.gz: 9a1fbc45a9482ffbb6da7bb67b44a359f47ae3a6dfb09d1a69a99f035358e094a62d5127a83d87e07eb5435837e7a60b0eee170d52654e43b58bcc024af477d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0 (2026-03-25)
4
+
5
+ Full Changelog: [v0.4.0...v1.0.0](https://github.com/context-dot-dev/context-ruby-sdk/compare/v0.4.0...v1.0.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([4767618](https://github.com/context-dot-dev/context-ruby-sdk/commit/4767618765a8f15bde582bf35f78190649681453))
10
+
3
11
  ## 0.4.0 (2026-03-25)
4
12
 
5
13
  Full Changelog: [v0.3.0...v0.4.0](https://github.com/context-dot-dev/context-ruby-sdk/compare/v0.3.0...v0.4.0)
data/README.md CHANGED
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
26
26
  <!-- x-release-please-start-version -->
27
27
 
28
28
  ```ruby
29
- gem "context.dev", "~> 0.4.0"
29
+ gem "context.dev", "~> 1.0.0"
30
30
  ```
31
31
 
32
32
  <!-- x-release-please-end -->
@@ -38,8 +38,7 @@ module ContextDev
38
38
  )
39
39
  end
40
40
 
41
- # Scrapes the given URL and returns the raw HTML content of the page. Uses
42
- # automatic proxy escalation to handle blocked sites.
41
+ # Scrapes the given URL and returns the raw HTML content of the page.
43
42
  #
44
43
  # @overload web_scrape_html(url:, request_options: {})
45
44
  #
@@ -90,9 +89,8 @@ module ContextDev
90
89
  # Some parameter documentations has been truncated, see
91
90
  # {ContextDev::Models::WebWebScrapeMdParams} for more details.
92
91
  #
93
- # Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
94
- # (GFM), and returns the result. Uses automatic proxy escalation to handle blocked
95
- # sites.
92
+ # Scrapes the given URL, converts the HTML content to Markdown, and returns the
93
+ # result.
96
94
  #
97
95
  # @overload web_scrape_md(url:, include_images: nil, include_links: nil, shorten_base64_images: nil, request_options: {})
98
96
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ContextDev
4
- VERSION = "0.4.0"
4
+ VERSION = "1.0.0"
5
5
  end
@@ -38,8 +38,7 @@ module ContextDev
38
38
  )
39
39
  end
40
40
 
41
- # Scrapes the given URL and returns the raw HTML content of the page. Uses
42
- # automatic proxy escalation to handle blocked sites.
41
+ # Scrapes the given URL and returns the raw HTML content of the page.
43
42
  sig do
44
43
  params(
45
44
  url: String,
@@ -69,9 +68,8 @@ module ContextDev
69
68
  )
70
69
  end
71
70
 
72
- # Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
73
- # (GFM), and returns the result. Uses automatic proxy escalation to handle blocked
74
- # sites.
71
+ # Scrapes the given URL, converts the HTML content to Markdown, and returns the
72
+ # result.
75
73
  sig do
76
74
  params(
77
75
  url: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: context.dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Context Dev