├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── _guard-core ├── appraisal ├── bundle ├── guard ├── rake ├── rspec └── rubocop ├── gemfiles ├── rails_5.2.6.gemfile ├── rails_6.0.4.gemfile ├── rails_6.1.4.gemfile └── rails_7.0.1.gemfile ├── lib ├── syslogger.rb └── syslogger │ └── version.rb ├── spec ├── spec_helper.rb └── syslogger_spec.rb └── syslogger.gemspec /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/_guard-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/_guard-core -------------------------------------------------------------------------------- /bin/appraisal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/appraisal -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/guard -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/bin/rubocop -------------------------------------------------------------------------------- /gemfiles/rails_5.2.6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/gemfiles/rails_5.2.6.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6.0.4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/gemfiles/rails_6.0.4.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6.1.4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/gemfiles/rails_6.1.4.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.0.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/gemfiles/rails_7.0.1.gemfile -------------------------------------------------------------------------------- /lib/syslogger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/lib/syslogger.rb -------------------------------------------------------------------------------- /lib/syslogger/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/lib/syslogger/version.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/syslogger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/spec/syslogger_spec.rb -------------------------------------------------------------------------------- /syslogger.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crohr/syslogger/HEAD/syslogger.gemspec --------------------------------------------------------------------------------