├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── schwad_performance_logger.rb └── schwad_performance_logger │ ├── schwad_performance_logger.rb │ └── version.rb └── schwad_performance_logger.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/schwad_performance_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/lib/schwad_performance_logger.rb -------------------------------------------------------------------------------- /lib/schwad_performance_logger/schwad_performance_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/lib/schwad_performance_logger/schwad_performance_logger.rb -------------------------------------------------------------------------------- /lib/schwad_performance_logger/version.rb: -------------------------------------------------------------------------------- 1 | module SchwadPerformanceLogger 2 | VERSION = "0.5.1" 3 | end 4 | -------------------------------------------------------------------------------- /schwad_performance_logger.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schwad/schwad_performance_logger/HEAD/schwad_performance_logger.gemspec --------------------------------------------------------------------------------