evt-diagnostics-sample 0.0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a786541d5b410f511239dc0b4bffae31a291e6acda5e29820f1341e07ef4bc16
4
+ data.tar.gz: c79e144b6eb931a8f2fb17d3511c2f16ea96c813a084816ba62bec22c2f96528
5
+ SHA512:
6
+ metadata.gz: 7b23eb759ad7564f324b35b36b1193356742b4fadf7da3a27bb75045e71756d746944cdf40ce6048eed168d4d0588877e6e11f7cd64e33edff3051a9fd8fd3f7
7
+ data.tar.gz: bf16c81eb241c74363141bd938bd88c25d021f325247f786ddc7a53d75c7193321d8de6df9c30ffce4c55cff9349f807f9df23335031d82495e8b3cbf749da63
@@ -0,0 +1,4 @@
1
+ require 'log'
2
+
3
+ require 'diagnostics/sample/log'
4
+ require 'diagnostics/sample/sample'
File without changes
@@ -0,0 +1,11 @@
1
+ module Diagnostics
2
+ module Sample
3
+ class Log < ::Log
4
+ def tag!(tags)
5
+ tags << :diagnostics_sample
6
+ tags << :library
7
+ tags << :verbose
8
+ end
9
+ end
10
+ end
11
+ end
File without changes
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: evt-diagnostics-sample
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - The Eventide Project
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-03-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: evt-log
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: test_bench
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: " "
42
+ email: opensource@eventide-project.org
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - lib/diagnostics/sample.rb
48
+ - lib/diagnostics/sample/controls.rb
49
+ - lib/diagnostics/sample/log.rb
50
+ - lib/diagnostics/sample/sample.rb
51
+ homepage: https://github.com/eventide-project/diagnostics-sample
52
+ licenses:
53
+ - MIT
54
+ metadata: {}
55
+ post_install_message:
56
+ rdoc_options: []
57
+ require_paths:
58
+ - lib
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 2.3.3
64
+ required_rubygems_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ requirements: []
70
+ rubyforge_project:
71
+ rubygems_version: 2.7.3
72
+ signing_key:
73
+ specification_version: 4
74
+ summary: Sampling and measurement of execution cycles
75
+ test_files: []