├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib └── sidekiq │ └── logging │ ├── json.rb │ └── json │ └── version.rb ├── sidekiq-logging-json.gemspec └── spec ├── sidekiq └── logging │ └── json_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sidekiq/logging/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/lib/sidekiq/logging/json.rb -------------------------------------------------------------------------------- /lib/sidekiq/logging/json/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/lib/sidekiq/logging/json/version.rb -------------------------------------------------------------------------------- /sidekiq-logging-json.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/sidekiq-logging-json.gemspec -------------------------------------------------------------------------------- /spec/sidekiq/logging/json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/spec/sidekiq/logging/json_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Springest/Sidekiq-Logging-JSON/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------