Skip to content

Commit

Permalink
Remove dead providers, bump to 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
nbulaj committed Jun 2, 2023
1 parent 2ec54f1 commit da6baec
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 202 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ Reverse Chronological Order:

...

## `0.17.0` (2023-06-02)

* Remove dead providers

## `0.16.0` (2022-02-04)

* Fix providers
* Improve HTTP.rb dependency

## `0.15.1` (2021-02-17)

* Support for Ruby 3.0
Expand Down
3 changes: 0 additions & 3 deletions lib/proxy_fetcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ module Providers
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/mtpro"
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/proxy_list"
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/proxypedia"
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/proxyscrape_http"
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/proxyscrape_socks4"
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/proxyscrape_socks5"
require "#{File.dirname(__FILE__)}/proxy_fetcher/providers/xroxy"
end

Expand Down
65 changes: 0 additions & 65 deletions lib/proxy_fetcher/providers/proxyscrape_http.rb

This file was deleted.

65 changes: 0 additions & 65 deletions lib/proxy_fetcher/providers/proxyscrape_socks4.rb

This file was deleted.

65 changes: 0 additions & 65 deletions lib/proxy_fetcher/providers/proxyscrape_socks5.rb

This file was deleted.

2 changes: 1 addition & 1 deletion lib/proxy_fetcher/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module VERSION
# Major version number
MAJOR = 0
# Minor version number
MINOR = 16
MINOR = 17
# Smallest version number
TINY = 0

Expand Down
3 changes: 0 additions & 3 deletions spec/proxy_fetcher/providers/proxy_classes_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
[:mtpro, "MTPro"],
[:proxy_list, "ProxyList"],
[:proxypedia, "Proxypedia"],
[:proxyscrape_http, "ProxyscrapeHTTP"],
[:proxyscrape_socks4, "ProxyscrapeSOCKS4"],
[:proxyscrape_socks5, "ProxyscrapeSOCKS5"],
[:xroxy, "XRoxy"]
].each do |(provider_name, provider_klass)|
describe Object.const_get("ProxyFetcher::Providers::#{provider_klass}") do
Expand Down

0 comments on commit da6baec

Please sign in to comment.