x-twitter-scraper 0.4.0 → 0.4.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 +8 -0
- data/README.md +7 -2
- data/lib/x_twitter_scraper/version.rb +1 -1
- metadata +20 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e1a95b47886434550d13ed148e49829d794f136dcb4af88dfebf7824361cedb
|
|
4
|
+
data.tar.gz: 5fed862c3e773ef737360de9ade39a49619aa691e5a02e5f70f1e096dd44f365
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec0a5f2e3a8d006411ffa2f92608133f62d2e18ecc53f83ce5f447c17d90bf9931705c1370ad7d89c4ded2ee52a9b59c196a4e7559d0e8fef960f384f00c6d1f
|
|
7
|
+
data.tar.gz: 909203cdedd77ed4a76728018b8069a2b71001e06f6d2f147e04f4a1cf45745d632a996d222c6449a11e40e5ae547fb33042c9a148d547cbd54ec08090c995ad
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.1 (2026-05-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.4.0...v0.4.1](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.4.0...v0.4.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* expose RubyGems license, issue tracker, changelog, and funding metadata
|
|
10
|
+
|
|
3
11
|
## 0.4.0 (2026-04-22)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.3.0...v0.4.0](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.3.0...v0.4.0)
|
data/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
# X Twitter Scraper Ruby
|
|
1
|
+
# X (Twitter) Scraper Ruby SDK: Tweet Search, Profile Tweets, Followers & Posting
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://deepwiki.com/Xquik-dev/x-twitter-scraper-ruby)
|
|
4
|
+
<a href="https://nothumansearch.ai/site/xquik.com" target="_blank" rel="noopener"><img src="https://nothumansearch.ai/badge/xquik.com.svg" alt="NHS Agentic Readiness Score" height="28"></a>
|
|
5
|
+
|
|
6
|
+
The Xquik Ruby SDK is a Twitter API SDK and X API alternative for tweet search, advanced Twitter search queries, profile tweets, user lookup, follower export, media download, media upload, monitoring, webhooks, and posting automation.
|
|
7
|
+
|
|
8
|
+
Use it from Ruby 3.2.0+ applications to get tweets from profiles, search tweets by keyword or operator query, send tweets, post replies, like, repost, follow, DM, run giveaway draws, and automate X workflows. It ships with comprehensive types and docstrings in Yard, RBS, and RBI. The standard library's `net/http` is used as the HTTP transport, with connection pooling via the `connection_pool` gem.
|
|
4
9
|
|
|
5
10
|
It is generated with [Stainless](https://www.stainless.com/).
|
|
6
11
|
|
metadata
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: x-twitter-scraper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- X Twitter Scraper
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0'
|
|
19
|
+
version: '0.5'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0'
|
|
26
|
+
version: '0.5'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: connection_pool
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '2.5'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '2.5'
|
|
41
41
|
description:
|
|
42
42
|
email: support@xquik.com
|
|
43
43
|
executables: []
|
|
@@ -864,13 +864,17 @@ files:
|
|
|
864
864
|
- sig/x_twitter_scraper/resources/x/users.rbs
|
|
865
865
|
- sig/x_twitter_scraper/resources/x/users/follow.rbs
|
|
866
866
|
- sig/x_twitter_scraper/version.rbs
|
|
867
|
-
homepage: https://docs.xquik.com
|
|
868
|
-
licenses:
|
|
867
|
+
homepage: https://docs.xquik.com/sdks/ruby
|
|
868
|
+
licenses:
|
|
869
|
+
- Apache-2.0
|
|
869
870
|
metadata:
|
|
870
|
-
homepage_uri: https://docs.xquik.com
|
|
871
|
+
homepage_uri: https://docs.xquik.com/sdks/ruby
|
|
872
|
+
bug_tracker_uri: https://github.com/Xquik-dev/x-twitter-scraper-ruby/issues
|
|
873
|
+
changelog_uri: https://github.com/Xquik-dev/x-twitter-scraper-ruby/blob/main/CHANGELOG.md
|
|
871
874
|
documentation_uri: https://gemdocs.org/gems/x-twitter-scraper
|
|
875
|
+
funding_uri: https://xquik.com
|
|
872
876
|
source_code_uri: https://github.com/Xquik-dev/x-twitter-scraper-ruby
|
|
873
|
-
rubygems_mfa_required: '
|
|
877
|
+
rubygems_mfa_required: 'true'
|
|
874
878
|
post_install_message:
|
|
875
879
|
rdoc_options: []
|
|
876
880
|
require_paths:
|
|
@@ -889,5 +893,6 @@ requirements: []
|
|
|
889
893
|
rubygems_version: 3.4.1
|
|
890
894
|
signing_key:
|
|
891
895
|
specification_version: 4
|
|
892
|
-
summary: Ruby
|
|
896
|
+
summary: Official Ruby SDK for Xquik tweet search, profile tweets, followers, webhooks,
|
|
897
|
+
and X automation.
|
|
893
898
|
test_files: []
|