ruby-2captcha 0.2.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: 18dcba74509e7e51524b088628bf3c9445dcd9c17536f6e7c17ff306086ef0f8
4
- data.tar.gz: d0c4df575ef009f3f669be578006dd188645196ebf91159318a30d06073cb062
3
+ metadata.gz: bceae77fdd7d62a0bf9865844cb82de261c988e77a5cdb8eadf7291033db46cf
4
+ data.tar.gz: 28a960abf150e63c7a73262ea0a7ae6c23e5c86b63809ea003a515c252cf1e8f
5
5
  SHA512:
6
- metadata.gz: 127de2e70f39112270a793ca6ce3f06bed13793ba2ba12a9048ac4262950adbdde49dc365235fd3609b76fee606af26e526faee323790d79f30ba13d14394ee1
7
- data.tar.gz: 5ab07fd23cdd12284f5d7fe8aef289461b6f9269641353ed1e53f64ea15bd6bf637636fa2eecb3e002c11a77209aed8b2d1e74474c08bc0c6e0f4c736a632a50
6
+ metadata.gz: a636a333b794a6d8626bdea77e7617d864ed3199309e711069bf25a9c1e31027012d75c2c6bc90eadf4120e3c364e8dfcb48beda2a39feed33ed0c9884554dca
7
+ data.tar.gz: 425f31c29721c8fe3a762a621430f5d3e81dde90a3a8126e3c4f26453714edd8f4e79c82c463080b73d3c10ffcf8f2597dceb25c8aab1536f4b4c2dd02cebc93
data/README.md CHANGED
@@ -140,7 +140,7 @@ result = client.recaptcha_v3({
140
140
  FunCaptcha (Arkoselabs) solving method. Returns a token.
141
141
 
142
142
  ```ruby
143
- result := client.funcaptcha({
143
+ result = client.funcaptcha({
144
144
  publickey: "69A21A01-CC7B-B9C6-0F9A-E7FA06677FFC",
145
145
  pageurl: "https://mysite.com/page/with/funcaptcha",
146
146
  surl: "https://client-api.arkoselabs.com"})
data/api_2captcha.gemspec CHANGED
@@ -8,17 +8,15 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["2captcha.com"]
9
9
  spec.email = ["info@2captcha.com"]
10
10
 
11
- spec.summary = "Write a short summary, because RubyGems requires one."
12
- spec.description = "Write a longer description or delete this line."
13
- spec.homepage = "https://github.com/2captcha/"
11
+ spec.summary = "2Captcha API wrapper for Ruby."
12
+ spec.description = "Ruby package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas."
13
+ spec.homepage = "https://2captcha.com/"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = ">= 2.6.0"
16
16
 
17
- # spec.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com/2captcha"
18
-
19
17
  spec.metadata["homepage_uri"] = spec.homepage
20
- spec.metadata["source_code_uri"] = "https://github.com/2captcha/"
21
- spec.metadata["changelog_uri"] = "https://github.com/2captcha/"
18
+ spec.metadata["source_code_uri"] = "https://github.com/2captcha/2captcha-ruby"
19
+ spec.metadata["changelog_uri"] = "https://github.com/2captcha/2captcha-ruby/releases"
22
20
 
23
21
  # Specify which files should be added to the gem when it is released.
24
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Api2Captcha
4
- VERSION = "0.2.0"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-2captcha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - 2captcha.com
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-24 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Write a longer description or delete this line.
13
+ description: Ruby package for easy integration with the API of 2captcha captcha solving
14
+ service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
14
15
  email:
15
16
  - info@2captcha.com
16
17
  executables: []
@@ -32,13 +33,13 @@ files:
32
33
  - lib/api_2captcha/client.rb
33
34
  - lib/api_2captcha/version.rb
34
35
  - sig/api_2captcha.rbs
35
- homepage: https://github.com/2captcha/
36
+ homepage: https://2captcha.com/
36
37
  licenses:
37
38
  - MIT
38
39
  metadata:
39
- homepage_uri: https://github.com/2captcha/
40
- source_code_uri: https://github.com/2captcha/
41
- changelog_uri: https://github.com/2captcha/
40
+ homepage_uri: https://2captcha.com/
41
+ source_code_uri: https://github.com/2captcha/2captcha-ruby
42
+ changelog_uri: https://github.com/2captcha/2captcha-ruby/releases
42
43
  post_install_message:
43
44
  rdoc_options: []
44
45
  require_paths:
@@ -57,5 +58,5 @@ requirements: []
57
58
  rubygems_version: 3.2.3
58
59
  signing_key:
59
60
  specification_version: 4
60
- summary: Write a short summary, because RubyGems requires one.
61
+ summary: 2Captcha API wrapper for Ruby.
61
62
  test_files: []