├── .fossa.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .semaphore ├── ensure-bundle.sh ├── ensure-ruby-build.sh ├── ensure-ruby-version.sh └── semaphore.yml ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── HISTORY.md ├── LICENSE.txt ├── Manifest.txt ├── README.md ├── Rakefile ├── bin └── setup ├── examples ├── benchmarks.rb ├── clock_ids.rb ├── results.yml └── stats.rb ├── hitimes.gemspec ├── lib ├── hitimes.rb └── hitimes │ ├── initialize.rb │ ├── instant.rb │ ├── interval.rb │ ├── metric.rb │ ├── mutexed_stats.rb │ ├── paths.rb │ ├── stats.rb │ ├── timed_metric.rb │ ├── timed_value_metric.rb │ ├── value_metric.rb │ └── version.rb ├── spec ├── hitimes_spec.rb ├── initialize_spec.rb ├── interval_spec.rb ├── metric_spec.rb ├── mutex_stats_spec.rb ├── paths_spec.rb ├── spec_helper.rb ├── stats_spec.rb ├── timed_metric_spec.rb ├── timed_value_metric_spec.rb ├── value_metric_spec.rb └── version_spec.rb └── tasks ├── default.rake └── this.rb /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.1 2 | -------------------------------------------------------------------------------- /.semaphore/ensure-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.semaphore/ensure-bundle.sh -------------------------------------------------------------------------------- /.semaphore/ensure-ruby-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.semaphore/ensure-ruby-build.sh -------------------------------------------------------------------------------- /.semaphore/ensure-ruby-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.semaphore/ensure-ruby-version.sh -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/bin/setup -------------------------------------------------------------------------------- /examples/benchmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/examples/benchmarks.rb -------------------------------------------------------------------------------- /examples/clock_ids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/examples/clock_ids.rb -------------------------------------------------------------------------------- /examples/results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/examples/results.yml -------------------------------------------------------------------------------- /examples/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/examples/stats.rb -------------------------------------------------------------------------------- /hitimes.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/hitimes.gemspec -------------------------------------------------------------------------------- /lib/hitimes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes.rb -------------------------------------------------------------------------------- /lib/hitimes/initialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/initialize.rb -------------------------------------------------------------------------------- /lib/hitimes/instant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/instant.rb -------------------------------------------------------------------------------- /lib/hitimes/interval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/interval.rb -------------------------------------------------------------------------------- /lib/hitimes/metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/metric.rb -------------------------------------------------------------------------------- /lib/hitimes/mutexed_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/mutexed_stats.rb -------------------------------------------------------------------------------- /lib/hitimes/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/paths.rb -------------------------------------------------------------------------------- /lib/hitimes/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/stats.rb -------------------------------------------------------------------------------- /lib/hitimes/timed_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/timed_metric.rb -------------------------------------------------------------------------------- /lib/hitimes/timed_value_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/timed_value_metric.rb -------------------------------------------------------------------------------- /lib/hitimes/value_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/value_metric.rb -------------------------------------------------------------------------------- /lib/hitimes/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/lib/hitimes/version.rb -------------------------------------------------------------------------------- /spec/hitimes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/hitimes_spec.rb -------------------------------------------------------------------------------- /spec/initialize_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/initialize_spec.rb -------------------------------------------------------------------------------- /spec/interval_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/interval_spec.rb -------------------------------------------------------------------------------- /spec/metric_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/metric_spec.rb -------------------------------------------------------------------------------- /spec/mutex_stats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/mutex_stats_spec.rb -------------------------------------------------------------------------------- /spec/paths_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/paths_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/stats_spec.rb -------------------------------------------------------------------------------- /spec/timed_metric_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/timed_metric_spec.rb -------------------------------------------------------------------------------- /spec/timed_value_metric_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/timed_value_metric_spec.rb -------------------------------------------------------------------------------- /spec/value_metric_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/value_metric_spec.rb -------------------------------------------------------------------------------- /spec/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/spec/version_spec.rb -------------------------------------------------------------------------------- /tasks/default.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/tasks/default.rake -------------------------------------------------------------------------------- /tasks/this.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/hitimes/HEAD/tasks/this.rb --------------------------------------------------------------------------------