strace_log 0.1.0 → 0.1.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 +4 -4
- data/README.md +1 -1
- data/lib/strace_log.rb +1 -1
- data/strace_log.gemspec +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4867082d048a96d9ed999f1fe912e25b4d181fbb
|
|
4
|
+
data.tar.gz: 7ce5f28bbb104f4226e7535905cae484c397aad5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c8730598135cba2342dd84c877ef6a4c348c51bcc36510f3a388944b42e1b291cf3254b83adf34757eaf1f93cc122dafbd998d58946d5965d21db215aaebda7
|
|
7
|
+
data.tar.gz: c5f1d219b1b5294620def6912fb5cb0a5814f0c6940ef5b3e04a682ce1999dc4a625cf881aa1a5ff49d3b9da1d73d10d0f39f351653adc037c008bf45f3eae59
|
data/README.md
CHANGED
|
@@ -36,7 +36,7 @@ Print statistics of strace log:
|
|
|
36
36
|
|
|
37
37
|
## Contributing
|
|
38
38
|
|
|
39
|
-
1. Fork it ( https://github.com/
|
|
39
|
+
1. Fork it ( https://github.com/masa16/strace_log/fork )
|
|
40
40
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
41
41
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
42
42
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/lib/strace_log.rb
CHANGED
data/strace_log.gemspec
CHANGED
|
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Masahiro TANAKA"]
|
|
10
10
|
spec.email = ["masa16.tanaka@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{Parse strace
|
|
13
|
-
spec.description = %q{Parse
|
|
14
|
-
spec.homepage = ""
|
|
12
|
+
spec.summary = %q{Parse strace log}
|
|
13
|
+
spec.description = %q{Parse logs generated by Strace (system call tracer) and obtain statistics.}
|
|
14
|
+
spec.homepage = "https://github.com/masa16/strace_log"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
17
|
spec.bindir = "bin"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: strace_log
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masahiro TANAKA
|
|
@@ -38,7 +38,7 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '10.0'
|
|
41
|
-
description: Parse
|
|
41
|
+
description: Parse logs generated by Strace (system call tracer) and obtain statistics.
|
|
42
42
|
email:
|
|
43
43
|
- masa16.tanaka@gmail.com
|
|
44
44
|
executables:
|
|
@@ -54,7 +54,7 @@ files:
|
|
|
54
54
|
- bin/strace-stat
|
|
55
55
|
- lib/strace_log.rb
|
|
56
56
|
- strace_log.gemspec
|
|
57
|
-
homepage:
|
|
57
|
+
homepage: https://github.com/masa16/strace_log
|
|
58
58
|
licenses: []
|
|
59
59
|
metadata: {}
|
|
60
60
|
post_install_message:
|
|
@@ -76,6 +76,6 @@ rubyforge_project:
|
|
|
76
76
|
rubygems_version: 2.4.5
|
|
77
77
|
signing_key:
|
|
78
78
|
specification_version: 4
|
|
79
|
-
summary: Parse strace
|
|
79
|
+
summary: Parse strace log
|
|
80
80
|
test_files: []
|
|
81
81
|
has_rdoc:
|