x-twitter-scraper 0.5.3 → 0.5.4

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: 2bd53bdedbb2e6f903525934dd303d6269170c127c1ad76e7e0b9e13ab56cf2a
4
- data.tar.gz: f5c8d3fb900aa0a768a7525ed8d21b47617b3b14568fbc86eddeff7eb7c06f7a
3
+ metadata.gz: 144567e343980fa937a4a6734b4043d786e09999cdfa78be87dee0eea30d4b34
4
+ data.tar.gz: 1d9f6a8f49774f1df76245c8dcbdc9b4d82aa65c89478acd73e35b0a9902dd61
5
5
  SHA512:
6
- metadata.gz: '07783820810bbe98b500aa826e2ad24e6df6ddbac0f3abfd383a6953328da1ef0e660e240dbe536ff2c3a01833819ec40c423a26ff840e833a3adcb68e520697'
7
- data.tar.gz: 19600dcb5ab3dc11070546b0f6de561dce810e90ce632901c4688c021f1ebd701fc38607901c891931013103e793fb7c5256a6cde1ca582a5c513d338ddf3309
6
+ metadata.gz: 44d43c252aefe648a72f2c93be6a44bf61b6b2c18654eca8d6171a0bc5c5cf912155f7335e7512ba517d47f4bcd6bbfcd85481c572f887378ee496307013cb72
7
+ data.tar.gz: f4ccc15a48677f29b0e453f2f46fe04a686fdb8bb70b78dfe46ca7d10f022c2b8327fb183074ed00354056f4b8e3dbbd404685c27d475f39f79fe06f92e4a095
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.4 (2026-07-23)
4
+
5
+ Full Changelog: [v0.5.3...v0.5.4](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.5.3...v0.5.4)
6
+
7
+ ### Documentation
8
+
9
+ * map common X data tasks ([#15](https://github.com/Xquik-dev/x-twitter-scraper-ruby/issues/15)) ([754411a](https://github.com/Xquik-dev/x-twitter-scraper-ruby/commit/754411a6aa38dfff58a29957258d2639a2b261ed))
10
+
3
11
  ## 0.5.3 (2026-07-22)
4
12
 
5
13
  Full Changelog: [v0.5.2...v0.5.3](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.5.2...v0.5.3)
data/README.md CHANGED
@@ -1,11 +1,27 @@
1
- # Xquik Ruby SDK
1
+ # X (Twitter) Scraper Ruby SDK: Tweet Search, Timelines, Followers & Posting
2
2
 
3
- Use the Xquik API from Ruby 3.2+. The SDK includes Yard, RBS, and RBI types. It uses `net/http` with connection pooling.
3
+ [![OpenSSF Best Practices](https://www.bestpractices.dev/projects/13739/badge)](https://www.bestpractices.dev/projects/13739)
4
+
5
+ Use Xquik's typed Ruby client for X data and confirmed actions.
4
6
 
5
7
  ## Documentation
6
8
 
7
9
  Read the [Ruby SDK guide](https://docs.xquik.com/sdks/ruby), [API guide](https://docs.xquik.com/api-reference/overview), or [RubyDoc reference](https://gemdocs.org/gems/x-twitter-scraper).
8
10
 
11
+ ## Common X Data Tasks
12
+
13
+ Use the linked Ruby reference for typed method names.
14
+
15
+ | Customer Question | REST Route | Workflow Note |
16
+ | --- | --- | --- |
17
+ | How do I search tweets? | `GET /x/tweets/search` | Use keyword or advanced operator queries. |
18
+ | How do I read a profile timeline? | `GET /x/users/{id}/tweets` | Paginate bounded results. |
19
+ | How do I scrape followers? | `GET /x/users/{id}/followers` | Use an extraction for complete datasets. |
20
+ | How do I scrape following accounts? | `GET /x/users/{id}/following` | Use an extraction for complete datasets. |
21
+ | How do I read my home timeline? | `GET /x/timeline` | Approve this private read. |
22
+ | How do I monitor an account? | `POST /monitors` | Deliver events through HMAC webhooks. |
23
+ | How do I post or reply? | `POST /x/tweets` | Confirm the account and payload. |
24
+
9
25
  ## Installation
10
26
 
11
27
  Add the gem to your `Gemfile`:
@@ -13,7 +29,7 @@ Add the gem to your `Gemfile`:
13
29
  <!-- x-release-please-start-version -->
14
30
 
15
31
  ```ruby
16
- gem "x-twitter-scraper", "~> 0.5.3"
32
+ gem "x-twitter-scraper", "~> 0.5.4"
17
33
  ```
18
34
 
19
35
  <!-- x-release-please-end -->
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module XTwitterScraper
4
- VERSION = "0.5.3"
4
+ VERSION = "0.5.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: x-twitter-scraper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xquik