├── .github ├── dependabot.yml └── workflows │ ├── gempush.yml │ └── ruby.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── README.md ├── Rakefile ├── bench.rb ├── bin ├── bundle ├── console ├── rake └── rspec ├── lib ├── logfmt.rb └── logfmt │ ├── logger.rb │ ├── parser.rb │ ├── tagged_logger.rb │ └── version.rb ├── logfmt-tagged_logger.gemspec ├── logfmt.gemspec └── spec ├── logfmt ├── logger_spec.rb ├── parser_spec.rb └── tagged_logger_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gempush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/.github/workflows/gempush.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /bench.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/bench.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/bin/console -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/bin/rspec -------------------------------------------------------------------------------- /lib/logfmt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/lib/logfmt.rb -------------------------------------------------------------------------------- /lib/logfmt/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/lib/logfmt/logger.rb -------------------------------------------------------------------------------- /lib/logfmt/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/lib/logfmt/parser.rb -------------------------------------------------------------------------------- /lib/logfmt/tagged_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/lib/logfmt/tagged_logger.rb -------------------------------------------------------------------------------- /lib/logfmt/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Logfmt 4 | VERSION = "0.1.0.beta.2" 5 | end 6 | -------------------------------------------------------------------------------- /logfmt-tagged_logger.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/logfmt-tagged_logger.gemspec -------------------------------------------------------------------------------- /logfmt.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/logfmt.gemspec -------------------------------------------------------------------------------- /spec/logfmt/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/spec/logfmt/logger_spec.rb -------------------------------------------------------------------------------- /spec/logfmt/parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/spec/logfmt/parser_spec.rb -------------------------------------------------------------------------------- /spec/logfmt/tagged_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/spec/logfmt/tagged_logger_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberdelia/logfmt-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------