├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── net_http_timeout_errors.rb └── net_http_timeout_errors │ └── version.rb ├── net_http_timeout_errors.gemspec └── spec └── net_http_timeout_errors_spec.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/net_http_timeout_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/lib/net_http_timeout_errors.rb -------------------------------------------------------------------------------- /lib/net_http_timeout_errors/version.rb: -------------------------------------------------------------------------------- 1 | class NetHttpTimeoutErrors 2 | VERSION = "1.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /net_http_timeout_errors.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/net_http_timeout_errors.gemspec -------------------------------------------------------------------------------- /spec/net_http_timeout_errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barsoom/net_http_timeout_errors/HEAD/spec/net_http_timeout_errors_spec.rb --------------------------------------------------------------------------------