├── .github ├── CODE_OF_CONDUCT.md ├── dependabot.yml └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── faraday-http.gemspec ├── lib └── faraday │ ├── adapter │ └── http.rb │ ├── http.rb │ └── http │ └── version.rb └── spec ├── faraday ├── http │ └── adapter_spec.rb └── http_spec.rb └── spec_helper.rb /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | --format documentation 3 | --color -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.4 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/bin/setup -------------------------------------------------------------------------------- /faraday-http.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/faraday-http.gemspec -------------------------------------------------------------------------------- /lib/faraday/adapter/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/lib/faraday/adapter/http.rb -------------------------------------------------------------------------------- /lib/faraday/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/lib/faraday/http.rb -------------------------------------------------------------------------------- /lib/faraday/http/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/lib/faraday/http/version.rb -------------------------------------------------------------------------------- /spec/faraday/http/adapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/spec/faraday/http/adapter_spec.rb -------------------------------------------------------------------------------- /spec/faraday/http_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/spec/faraday/http_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostisland/faraday-http/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------