threads_client_ruby 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4d5de23a59914609da01d579e6b077f2d025a5ec8ebbfd4b0335efdecf756ffd
4
+ data.tar.gz: 9eb0c361f1f7e297e03093c873f5d71d3a7f71cbd90e2a343fe32fe54cea2145
5
+ SHA512:
6
+ metadata.gz: 45682ac968778cd53e713fc4ff5a458570447b90e2541c45989d9fa1b8588b444596afbfae39da33f7e579593e8d6506de453657dc7a87c5b9e13675cb1f11ba
7
+ data.tar.gz: b095030c2b96238e5e27b5d3836eb63357484425a54c623b72a910438f28271b848406810df6413a09ba56be017941a6efac104da7f37b937c9d5525f78df2d8
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-07-12
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at derek.nguyen@inspireventures.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in threads_client_ruby.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rubocop", "~> 1.21"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Derek Nguyen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,106 @@
1
+ # [<img src="logo.jpg" width="36" height="36" />](https://github.com/junhoyeo) Threads Client
2
+
3
+ > Unofficial, Reverse-Engineered Ruby client for Meta's [Threads](https://threads.net).
4
+
5
+ # Getting Started
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'threads_client_ruby'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install threads_client_ruby
22
+
23
+ ## Usage
24
+ #### 🌀 Config Threads
25
+
26
+ Using **username** and **password** (first time)
27
+ ```ruby
28
+ credentials = {
29
+ username: "Instagram's username",
30
+ password: "Instagram's password"
31
+ }
32
+
33
+ ThreadsClient.config do |config|
34
+ config.credentials = credentials
35
+ end
36
+ ```
37
+
38
+ Using **usertoken** and **userid** (get from [here](#🤖-get-usertoken-and-userid))
39
+ ```ruby
40
+ credentials = {
41
+ usertoken: "token received after login successfull",
42
+ userid: "Instagram's user id"
43
+ }
44
+
45
+ ThreadsClient.config do |config|
46
+ config.credentials = credentials
47
+ end
48
+ ```
49
+
50
+ >💡 TIP: Using **usertoken** and **userid** to avoid Theard rate limit and decrease response time.
51
+
52
+ #### 🤖 Get usertoken and userid
53
+
54
+ ```ruby
55
+ userinfo = ThreadsClient.get_userinfo
56
+ # {
57
+ # :usertoken=> "eyJkc191c2VyX2lkIjoiNTgzOTIyMTY....",
58
+ # :userid=>"583922..."
59
+ # }
60
+ ```
61
+
62
+ #### 📌 Features
63
+
64
+ - [x] ✅ [Text Threads](#✨-threads-with-image)
65
+ - [ ] ✅ [Threads with Image](#✨-threads-with-image)
66
+ - [ ] ✅ [Threads with Link Attachment](#✨-threads-with-link-attachment)
67
+ - [ ] ✅ [Reply to Other Threads](#✨-reply-to-other-threads)
68
+ - [ ] ✅ [Like/Unlike a Thread](#✨-likeunlike-a-thread)
69
+ - [ ] ✅ [Follow/Unfollow a User](#✨-followunfollow-a-user)
70
+ - [ ] ✅ [Delete a Post](#✨-delete-a-post)
71
+
72
+ **✨ Text Threads**
73
+
74
+ ```ruby
75
+ ThreadsClient.publish(text: 'Hello World!')
76
+ ```
77
+
78
+ ###### ✨ Threads with Image
79
+
80
+ ###### ✨ Threads with Link Attachment
81
+
82
+ ###### ✨ Reply to Other Threads
83
+
84
+ ###### ✨ Like/Unlike a Thread
85
+
86
+ ###### ✨ Follow/Unfollow a User
87
+
88
+ ###### ✨ Delete a Post
89
+
90
+ ## Development
91
+
92
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
93
+
94
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
95
+
96
+ ## Contributing
97
+
98
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/threads_client_ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/threads_client_ruby/blob/master/CODE_OF_CONDUCT.md).
99
+
100
+ ## License
101
+
102
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
103
+
104
+ ## Code of Conduct
105
+
106
+ Everyone interacting in the ThreadsClientRuby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/threads_client_ruby/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rubocop/rake_task"
5
+
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :rubocop
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "threads_client_ruby"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ThreadsClientRuby
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,193 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "threads_client_ruby/version"
4
+ require 'net/http'
5
+ require 'uri'
6
+ require 'json'
7
+
8
+ module ThreadsClientRuby
9
+ DEFAULT_DEVICE_ID = "android-#{rand(36**24).to_s(36)}"
10
+ LATEST_ANDROID_APP_VERSION = '289.0.0.77.109'
11
+ BASE_API_URL = 'https://i.instagram.com/api/v1'
12
+ LOGIN_URL = BASE_API_URL + '/bloks/apps/com.bloks.www.bloks.caa.login.async.send_login_request/'
13
+ POST_URL = BASE_API_URL + '/media/configure_text_only_post/'
14
+ DEFAULT_LSD_TOKEN = 'NjppQDEgONsU_1LCzrmp6q'
15
+ class Error < StandardError; end
16
+ module Config
17
+ class << self
18
+ attr_accessor :credentials # It's hash, with keys: username, password, usertoken, userid
19
+ def setup
20
+ @credentials = credentials
21
+ end
22
+ end
23
+ self.setup
24
+ end
25
+
26
+ def self.config(&block)
27
+ if block_given?
28
+ block.call(ThreadsClientRuby::Config)
29
+ else
30
+ ThreadsClientRuby::Config
31
+ end
32
+ end
33
+
34
+ def self.get_userinfo
35
+ core = ThreadsClientRuby::Core.new ThreadsClientRuby::Config.credentials
36
+ core.user_info
37
+ end
38
+
39
+ def self.publish(options = {})
40
+ core = ThreadsClientRuby::Core.new ThreadsClientRuby::Config.credentials
41
+ if options[:text] && options[:image]
42
+ elsif options[:text]
43
+ core.publish(options)
44
+ elsif options[:image]
45
+ else
46
+ raise Error.new "Don't have text or image"
47
+ end
48
+ end
49
+
50
+ class Core
51
+ def initialize(credentials)
52
+ @username = credentials[:username]
53
+ @password = credentials[:password]
54
+ @user_token = credentials[:usertoken]
55
+ @user_id = credentials[:userid]
56
+ end
57
+
58
+ def publish(options)
59
+ now = Time.now
60
+ timezone_offset = -now.utc_offset
61
+
62
+ data = {
63
+ text_post_app_info: { reply_control: 0 },
64
+ timezone_offset: timezone_offset.to_s,
65
+ source_type: '4',
66
+ _uid: user_id,
67
+ device_id: DEFAULT_DEVICE_ID,
68
+ caption: options[:text] || 'Please enter the text',
69
+ upload_id: now.to_i,
70
+ device: androidDevice
71
+ }
72
+ data[:publish_mode] = 'text_post'
73
+ url = URI.parse(ThreadsClientRuby::POST_URL)
74
+ headers = get_app_headers
75
+ payload = "signed_body=SIGNATURE.#{URI.encode_www_form_component(JSON.generate(data))}"
76
+ response = HTTParty.post(url, headers: headers, body: payload)
77
+ p response_handler(response)
78
+ end
79
+
80
+ def user_info
81
+ { usertoken: user_token, userid: user_id }
82
+ end
83
+
84
+ private
85
+
86
+ def androidDevice
87
+ {
88
+ manufacturer: 'OnePlus',
89
+ model: 'ONEPLUS+A3010',
90
+ os_version: 25,
91
+ os_release: '7.1.1'
92
+ }
93
+ end
94
+
95
+ def user_token
96
+ @user_token ||= req_login_n_get_token
97
+ end
98
+
99
+ def user_id
100
+ @user_id ||= req_get_user_id
101
+ end
102
+
103
+ def get_app_headers
104
+ app_version = ThreadsClientRuby::LATEST_ANDROID_APP_VERSION
105
+ headers = {
106
+ 'User-Agent' => "Barcelona #{app_version} Android",
107
+ 'Content-Type' => 'application/x-www-form-urlencoded; charset=UTF-8'
108
+ }
109
+ headers['Authorization'] = "Bearer IGT:2:#{@user_token}" if @user_token
110
+ headers
111
+ end
112
+
113
+ def get_default_headers(username = nil)
114
+ app_headers = get_app_headers
115
+ headers = {
116
+ 'authority' => 'www.threads.net',
117
+ 'accept' => '*/*',
118
+ 'accept-language' => 'ko',
119
+ 'cache-control' => 'no-cache',
120
+ 'origin' => 'https://www.threads.net',
121
+ 'pragma' => 'no-cache',
122
+ 'Sec-Fetch-Site' => 'same-origin',
123
+ 'x-asbd-id' => '129477',
124
+ 'x-fb-lsd' => @lsd_token || ThreadsClientRuby::DEFAULT_LSD_TOKEN,
125
+ 'x-ig-app-id' => '238260118697367'
126
+ }
127
+ headers['referer'] = "https://www.threads.net/@#{username}" if username
128
+ app_headers.merge(headers)
129
+ end
130
+
131
+ def req_login_n_get_token
132
+ client_input_params = {
133
+ password: @password,
134
+ contact_point: @username,
135
+ device_id: ThreadsClientRuby::DEFAULT_DEVICE_ID
136
+ }
137
+ server_params = {
138
+ credential_type: 'password',
139
+ device_id: ThreadsClientRuby::DEFAULT_DEVICE_ID
140
+ }
141
+ params = URI.encode_www_form_component(JSON.generate({
142
+ client_input_params: client_input_params,
143
+ server_params: server_params
144
+ }))
145
+ blockVersion = '5f56efad68e1edec7801f630b5c122704ec5378adbee6609a448f105f34a9c73'
146
+ bkClientContext = URI.encode_www_form_component(JSON.generate({
147
+ bloks_version: blockVersion,
148
+ styles_id: 'instagram'
149
+ }))
150
+ url = URI.parse(ThreadsClientRuby::LOGIN_URL)
151
+ headers = get_app_headers
152
+ response = HTTParty.post(url, headers: headers, body: "params=#{params}&bk_client_context=#{bkClientContext}&bloks_versioning_id=#{blockVersion}")
153
+ data = response.body
154
+ data.scan(/Bearer IGT:2:(.*?)"/).flatten.first&.gsub('\\', '')
155
+ end
156
+
157
+ def req_get_user_id
158
+ url = "https://www.instagram.com/#{@username}"
159
+ headers = get_default_headers(@username).merge({
160
+ 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
161
+ 'accept-language' => 'ko,en;q=0.9,ko-KR;q=0.8,ja;q=0.7',
162
+ 'Authorization' => nil,
163
+ 'referer' => 'https://www.instagram.com/',
164
+ 'sec-fetch-dest' => 'document',
165
+ 'sec-fetch-mode' => 'navigate',
166
+ 'sec-fetch-site' => 'cross-site',
167
+ 'sec-fetch-user' => '?1',
168
+ 'upgrade-insecure-requests' => '1',
169
+ 'x-asbd-id' => nil,
170
+ 'x-fb-lsd' => nil,
171
+ 'x-ig-app-id' => nil
172
+ })
173
+ options = {
174
+ headers: headers
175
+ }
176
+ response = HTTParty.get(url, options)
177
+ text = response.body
178
+ text.gsub!(/\s/, '') # remove ALL whitespaces from text
179
+ text.gsub!(/\n/, '') # remove all newlines from text
180
+
181
+ user_id = text.match(/"user_id":"(\d+)"/)&.captures&.first
182
+ @lsd_token = text.match(/"LSD",\[\],{"token":"(\w+)"},\d+\]/)&.captures&.first
183
+ user_id
184
+ end
185
+
186
+ def response_handler(response)
187
+ return { status: false, code: response.code } if response.code != 200
188
+
189
+ response_body = JSON.parse(response.body)
190
+ { status: true, response_body: response_body }
191
+ end
192
+ end
193
+ end
@@ -0,0 +1,4 @@
1
+ module ThreadsClientRuby
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: threads_client_ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Derek Nguyen
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-07-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Unofficial, Reverse-Engineered Ruby client for Meta's Threads. Supports
28
+ Read and Write.
29
+ email:
30
+ - derek.nguyen.269@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - ".rubocop.yml"
36
+ - CHANGELOG.md
37
+ - CODE_OF_CONDUCT.md
38
+ - Gemfile
39
+ - LICENSE.txt
40
+ - README.md
41
+ - Rakefile
42
+ - bin/console
43
+ - bin/setup
44
+ - lib/threads_client_ruby.rb
45
+ - lib/threads_client_ruby/version.rb
46
+ - sig/threads_client_ruby.rbs
47
+ homepage: https://github.com/dereknguyen269/threads_client_ruby
48
+ licenses:
49
+ - MIT
50
+ metadata:
51
+ homepage_uri: https://github.com/dereknguyen269/threads_client_ruby
52
+ source_code_uri: https://github.com/dereknguyen269/threads_client_ruby
53
+ changelog_uri: https://github.com/dereknguyen269/threads_client_ruby/CHANGELOG.md
54
+ post_install_message:
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 2.6.0
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ requirements: []
69
+ rubygems_version: 3.3.3
70
+ signing_key:
71
+ specification_version: 4
72
+ summary: Threads's client for ruby
73
+ test_files: []