├── .gemtest ├── .github └── workflows │ ├── ci.yml │ └── linter.yml ├── .gitignore ├── .mdlrc ├── .rspec ├── .rubocop.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── lib ├── silencer.rb └── silencer │ ├── hush.rb │ ├── methods.rb │ ├── rack │ └── logger.rb │ ├── rails │ ├── environment.rb │ └── logger.rb │ ├── util.rb │ └── version.rb ├── lint └── markdown.rb ├── silencer.gemspec └── spec ├── log └── test.log ├── silencer ├── rack │ └── logger_spec.rb └── rails │ └── logger_spec.rb └── spec_helper.rb /.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- 1 | style 'lint/markdown.rb' 2 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format=documentation 3 | --backtrace 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/silencer.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | -------------------------------------------------------------------------------- /lib/silencer/hush.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/lib/silencer/hush.rb -------------------------------------------------------------------------------- /lib/silencer/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/lib/silencer/methods.rb -------------------------------------------------------------------------------- /lib/silencer/rack/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/lib/silencer/rack/logger.rb -------------------------------------------------------------------------------- /lib/silencer/rails/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/lib/silencer/rails/environment.rb -------------------------------------------------------------------------------- /lib/silencer/rails/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/lib/silencer/rails/logger.rb -------------------------------------------------------------------------------- /lib/silencer/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/lib/silencer/util.rb -------------------------------------------------------------------------------- /lib/silencer/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Silencer 4 | VERSION = '2.0.0' 5 | end 6 | -------------------------------------------------------------------------------- /lint/markdown.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | all 4 | rule "MD046", style: "fenced" 5 | -------------------------------------------------------------------------------- /silencer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/silencer.gemspec -------------------------------------------------------------------------------- /spec/log/test.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/silencer/rack/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/spec/silencer/rack/logger_spec.rb -------------------------------------------------------------------------------- /spec/silencer/rails/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/spec/silencer/rails/logger_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stve/silencer/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------