New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

faraday_adapter_socks

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

faraday_adapter_socks

  • 0.1.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

FaradayAdapterSocks Build Status

Faraday adapter for socks proxy

Installation

Add this line to your application's Gemfile:

gem 'faraday_adapter_socks'

And then execute:

$ bundle

Or install it yourself as:

$ gem install faraday_adapter_socks

Usage

Adapter symbol :net_http_socks should be set to faraday_adapter

Example: faraday connection

require 'faraday_adapter_socks'

options = { proxy: { uri: URI.parse("socks://#{your_socks_server}") } }

conn = Faraday.new(url, options) do |faraday|
  faraday.request :url_encoded
  faraday.adapter :net_http_socks  # please assign ":net_http_socks" adapter
end

response = conn.get do |req|
  req.url request_path
end

Example: get oauth2 client using intridea/oauth2

require 'faraday_adapter_socks'

client_options = { connection_opts: { proxy: { uri: URI.parse("socks://#{your_socks_server}") } }

client = ::OAuth2::Client.new(client_id, client_secret, client_options) do |conn|
  conn.request :url_encoded
  conn.response :json, content_type: /\bjson$/
  conn.adapter :net_http_socks  # please assign ":net_http_socks" adapter
end

Development

Setup

$ git clone https://github.com/goldeneggg/faraday_adapter_socks.git
$ bin/setup

Run tests

$ bundle exec rake spec

Debug using pry

$ bin/console

To release a new version, update the version number in version.rb.

Contributing

Bug reports and pull requests are welcome on GitHub at issues

Author

goldeneggg

FAQs

Package last updated on 20 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc