├── .gitignore ├── .pryrc ├── .ruby-version ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── sidekiq-statsd.rb └── sidekiq │ └── statsd │ ├── server_middleware.rb │ └── version.rb ├── sidekiq-statsd.gemspec └── spec ├── sidekiq └── statsd │ └── server_middleware_spec.rb ├── spec_helper.rb └── support ├── shared_examples_for_a_resilient_gauge_reporter.rb └── sidekiq.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/.gitignore -------------------------------------------------------------------------------- /.pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/.pryrc -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sidekiq-statsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/lib/sidekiq-statsd.rb -------------------------------------------------------------------------------- /lib/sidekiq/statsd/server_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/lib/sidekiq/statsd/server_middleware.rb -------------------------------------------------------------------------------- /lib/sidekiq/statsd/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/lib/sidekiq/statsd/version.rb -------------------------------------------------------------------------------- /sidekiq-statsd.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/sidekiq-statsd.gemspec -------------------------------------------------------------------------------- /spec/sidekiq/statsd/server_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/spec/sidekiq/statsd/server_middleware_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/shared_examples_for_a_resilient_gauge_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/spec/support/shared_examples_for_a_resilient_gauge_reporter.rb -------------------------------------------------------------------------------- /spec/support/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phstc/sidekiq-statsd/HEAD/spec/support/sidekiq.rb --------------------------------------------------------------------------------