├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── exponential-backoff.gemspec ├── lib ├── exponential │ └── backoff.rb ├── exponential_backoff.rb └── exponential_backoff │ └── version.rb └── test └── exponential_backoff_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/Rakefile -------------------------------------------------------------------------------- /exponential-backoff.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/exponential-backoff.gemspec -------------------------------------------------------------------------------- /lib/exponential/backoff.rb: -------------------------------------------------------------------------------- 1 | require 'exponential_backoff' 2 | -------------------------------------------------------------------------------- /lib/exponential_backoff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/lib/exponential_backoff.rb -------------------------------------------------------------------------------- /lib/exponential_backoff/version.rb: -------------------------------------------------------------------------------- 1 | class ExponentialBackoff 2 | VERSION = "0.0.4" 3 | end 4 | -------------------------------------------------------------------------------- /test/exponential_backoff_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlyobvious/exponential-backoff/HEAD/test/exponential_backoff_test.rb --------------------------------------------------------------------------------