README.md in null-logger-0.1.5 vs README.md in null-logger-0.1.6

- old
+ new

@@ -6,24 +6,24 @@ A simple logger that does not log anything. It can be used for defining an interface for other loggers. ## Installation -Add gem to your Gemfile +Add the gem to your Gemfile ```ruby gem 'null-logger', require: 'null_logger' ``` ## Usage -On NullLogger instance you can call methods which corresponds to Ruby Logger log levels (unknown, fatal, error, warn, info, debug), ex: +On NullLogger instance you can call methods which correspond to Ruby Logger log levels (unknown, fatal, error, warn, info, debug), ex: ```ruby NullLogger.new.fatal # return nil NullLogger.new.wrong_method # raise NoMethodError ``` -NullLogger define interface for real logger instance, ex: +NullLogger defines an interface for real logger instance, ex: ```ruby class Worker class << self attr_writer :logger @@ -51,10 +51,10 @@ ## Note on contributions First, thank you for considering contributing to NullLogger! It's people like you that make the open source community such a great community! -Each pull request must pass all the rspec specs and meet our quality requirements. +Each pull request must pass all the RSpec specs and meet our quality requirements. To check if everything is as it should be, we use [Coditsu](https://coditsu.io) that combines multiple linters and code analyzers for both code and documentation. Once you're done with your changes, submit a pull request. Coditsu will automatically check your work against our quality standards. You can find your commit check results on the [builds page](https://app.coditsu.io/karafka/repositories/null-logger/builds/commit_builds) of NullLogger repository.