├── .document ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── ratelimit.rb └── ratelimit │ └── version.rb ├── ratelimit.gemspec └── spec ├── ratelimit_spec.rb └── spec_helper.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/.document -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --warnings 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | ratelimit 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.1.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/ratelimit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/lib/ratelimit.rb -------------------------------------------------------------------------------- /lib/ratelimit/version.rb: -------------------------------------------------------------------------------- 1 | class Ratelimit 2 | VERSION = "1.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /ratelimit.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/ratelimit.gemspec -------------------------------------------------------------------------------- /spec/ratelimit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/spec/ratelimit_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejfinneran/ratelimit/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------