diff --git a/README.md b/README.md
index 5afb7e9..a55ffbb 100644
--- a/README.md
+++ b/README.md
@@ -9,9 +9,9 @@
-# 💎 Ruby captcha solver: Bypass reCAPTCHA, Cloudflare, hCaptcha, Amazon and more
+# 💎 Ruby captcha solver: Bypass reCAPTCHA, Cloudflare, Amazon and more
-Use the [Ruby captcha solver](https://solvecaptcha.com/captcha-solver/ruby-captcha-solver-bypass) to automatically bypass captchas like reCAPTCHA v2, v3, Invisible, Enterprise, hCaptcha, Cloudflare Turnstile, GeeTest, FunCaptcha, and Amazon WAF in any Ruby app.
+Use the [Ruby captcha solver](https://solvecaptcha.com/captcha-solver/ruby-captcha-solver-bypass) to automatically bypass captchas like reCAPTCHA v2, v3, Invisible, Enterprise, Cloudflare Turnstile, GeeTest, FunCaptcha, and Amazon WAF in any Ruby app.
## ✅ Supported captcha solvers
@@ -20,7 +20,6 @@ To get started quickly, check out the [Captcha Solver API](https://solvecaptcha.
Helpful links:
- [reCAPTCHA v2 solver](https://solvecaptcha.com/captcha-solver/recaptcha-v2-solver-bypass)
- [reCAPTCHA v3 solver](https://solvecaptcha.com/captcha-solver/recaptcha-v3-solver-bypass)
-- [hCaptcha solver](https://solvecaptcha.com/captcha-solver/hcaptcha-solver-bypass)
- [Text and image captcha solver](https://solvecaptcha.com/captcha-solver/image-captcha-solver-bypass)
- [Cloudflare captcha solver (Turnstile)](https://solvecaptcha.com/captcha-solver/cloudflare-captcha-solver-bypass)
- [Amazon captcha solver (AWS WAF)](https://solvecaptcha.com/captcha-solver/amazon-captcha-solver-bypass)
@@ -48,7 +47,7 @@ Helpful links:
Need help integrating with your PHP application? [Open an issue](https://github.com/solvercaptcha/solvecaptcha-ruby/issues) or fork this repo to contribute.
-- [💎 Ruby captcha solver: Bypass reCAPTCHA, Cloudflare, hCaptcha, Amazon and more](#-ruby-captcha-solver-bypass-recaptcha-cloudflare-hcaptcha-amazon-and-more)
+- [💎 Ruby captcha solver: Bypass reCAPTCHA, Cloudflare, Amazon and more](#-ruby-captcha-solver-bypass-recaptcha-cloudflare-amazon-and-more)
- [Installation](#installation)
- [Configuration](#configuration)
- [Client instance options](#client-instance-options)
@@ -59,7 +58,6 @@ Need help integrating with your PHP application? [Open an issue](https://github.
- [reCAPTCHA v2](#recaptcha-v2)
- [reCAPTCHA v3](#recaptcha-v3)
- [reCAPTCHA Enterprise](#recaptcha-enterprise)
- - [hCaptcha](#hcaptcha)
- [FunCaptcha](#funcaptcha)
- [GeeTest](#geetest)
- [GeeTest V4](#geetest-v4)
@@ -97,7 +95,7 @@ Need help integrating with your PHP application? [Open an issue](https://github.
Add this line to your Gemfile:
```ruby
-gem 'solvecaptcha', git: 'https://github.com/solvercaptcha/solvecaptcha-ruby.git'
+gem 'solvecaptcha-ruby', git: 'https://github.com/solvercaptcha/solvecaptcha-ruby.git'
```
Then run:
@@ -118,7 +116,7 @@ gem specific_install https://github.com/solvercaptcha/solvecaptcha-ruby.git
Add this line to your application's Gemfile:
```bash
-gem 'ruby-solvecaptcha'
+gem 'solvecaptcha-ruby'
```
And then execute:
@@ -129,7 +127,7 @@ $ bundle
Or install it yourself as:
```bash
-$ gem install ruby-solvecaptcha
+$ gem install solvecaptcha-ruby
```
## Configuration
@@ -252,19 +250,6 @@ result = client.recaptcha_v3({
})
```
-### hCaptcha
-
-[API method description.](https://solvecaptcha.com/captcha-solver-api#solving_hcaptcha)
-
-Use this method to solve hCaptcha and obtain a token to bypass the protection.
-
-```ruby
-result = client.hcaptcha({
- sitekey: 'SITEKEY',
- pageurl: 'https://example.com'
-})
-```
-
### FunCaptcha
[API method description.](https://solvecaptcha.com/captcha-solver-api#solving_funcaptcha_new)
diff --git a/examples/hcaptcha_example.rb b/examples/hcaptcha_example.rb
deleted file mode 100644
index 7ac2c88..0000000
--- a/examples/hcaptcha_example.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-require_relative '../lib/api_solvecaptcha'
-
-client = ApiSolveCaptcha::Client.new('YOUR_API_KEY')
-
-result = client.hcaptcha({
- sitekey: 'SITEKEY',
- pageurl: 'https://example.com'
-})
-
-puts result