fluent-rubyprof 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c5af4225bd048f530f0bc17efa9b1c1ef302065
4
- data.tar.gz: 279ca1e6851adcfc89f9320b9d9b436b6835b069
3
+ metadata.gz: a39b11208c6b56b2e344c89bbf955dfc645c4c94
4
+ data.tar.gz: 8ff204c9322cd2bf16d4ce9308e5e2538f7e881b
5
5
  SHA512:
6
- metadata.gz: 9f03e5ea2f437bfb9ec0bdd84ced3bc3060e4c8dad2b9edb36c8f9770273a43795506441aac803dc1ad067be80ad44c3ad3e8ebb1464195d4c745f56ef37f71e
7
- data.tar.gz: 15789d6ed25664f8b66771fcc97b6a0061f1e99b2a89f3469624fa42b59bc5dac6852f811ccd1ad2f843e9352a79038ac0ad765e8bc9e5446a8542be4ba78848
6
+ metadata.gz: 81de9e6eb2a8fb23023654c86b4e87b95f9b96595113fc5c556f68f84a7840baf1f97b229b3c447d6e394dd241158036c967865fc4124ff4246e4f9558c39198
7
+ data.tar.gz: ecde003870cd35f7fa592c7f2795619538137a298b6c766a79e357cf28d19149b7c5e19214f70a731bf12132a4d2a2bbbc2b75c76b7327bd4aa8146a03cdcb90
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # 0.0.2 (2014/08/01)
2
+
3
+ Changes:
4
+
5
+ * Outputs `started` and `stopped` messages
6
+
7
+ # 0.0.1 (2014/08/01)
8
+
9
+ First version
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-rubyprof"
7
- spec.version = "0.0.1"
7
+ spec.version = "0.0.2"
8
8
  spec.authors = ["Naotoshi Seo"]
9
9
  spec.email = ["sonots@gmail.com"]
10
10
  spec.summary = %q{Tools for start/stop ruby-prof dynamically from outside of fluentd}
@@ -77,6 +77,13 @@ def main
77
77
  end
78
78
 
79
79
  $remote_engine.method_missing(:instance_eval, remote_code)
80
+
81
+ case opts[:command]
82
+ when 'start'
83
+ $stdout.puts 'fluent-rubyprof: started'
84
+ when 'stop'
85
+ $stdout.puts "fluent-rubyprof: outputs to #{opts[:output]}"
86
+ end
80
87
  end
81
88
 
82
89
  main
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-rubyprof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo
@@ -63,6 +63,7 @@ files:
63
63
  - ".gitignore"
64
64
  - ".rspec"
65
65
  - ".travis.yml"
66
+ - CHANGELOG.md
66
67
  - Gemfile
67
68
  - LICENSE.txt
68
69
  - README.md