rbkit 0.1.9 → 0.1.10
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 +0 -4
- data/lib/rbkit/version.rb +1 -1
- data/rbkit.gemspec +6 -2
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55020365f700627adf7dd9295533d4ffcac0b99e
|
4
|
+
data.tar.gz: f1c6bcef03ae7709f1753db1740ecf3b0b1ce3ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 284e4a9568523a060244f1ac2d583687759dbc70399a5d8a3cef74d90002041e88d8a22e0b84ea6edf99fa715c4891cd64cb63956c13aefa7fd1e13533aaaa1e
|
7
|
+
data.tar.gz: a80b48252bd9ebb1d3430457473dcac9ac6d284c502e11784be9d8d867c1b2a4f9f218a5dfde7147bce647d8ab0b17b5beb41ffea280279c555b9cd43bd09f87
|
data/README.md
CHANGED
@@ -10,10 +10,6 @@ as packed messages.
|
|
10
10
|
|
11
11
|
## Usage
|
12
12
|
|
13
|
-
Rbkit is not ready for production yet. To use the development version of Rbkit
|
14
|
-
in your Ruby project, follow the instructions under `Development` section and
|
15
|
-
then follow these steps :
|
16
|
-
|
17
13
|
#### Add `rbkit` to Gemfile
|
18
14
|
|
19
15
|
Add the following to the project's Gemfiles
|
data/lib/rbkit/version.rb
CHANGED
data/rbkit.gemspec
CHANGED
@@ -16,8 +16,12 @@ Gem::Specification.new do |s|
|
|
16
16
|
end
|
17
17
|
s.required_ruby_version = '>= 2.1.0'
|
18
18
|
s.authors = ["Hemant Kumar", "Emil Soman", "Kashyap"]
|
19
|
-
s.description = %q{
|
20
|
-
|
19
|
+
s.description = %q{
|
20
|
+
A Ruby profiler for the rest of us, Rbkit plugs into a Ruby process, and taps
|
21
|
+
realtime data to be sent over the network. We use Msgpack for achieving
|
22
|
+
network transport.
|
23
|
+
}
|
24
|
+
s.email = %q{hemant@codemancers.com emil@codemancers.com kashyap@codemancers.com yuva@codemancers.com}
|
21
25
|
|
22
26
|
s.files = `git ls-files`.split("\n")
|
23
27
|
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hemant Kumar
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-01-
|
13
|
+
date: 2015-01-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rspec
|
@@ -54,8 +54,10 @@ dependencies:
|
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 0.9.0
|
57
|
-
description:
|
58
|
-
|
57
|
+
description: "\n A Ruby profiler for the rest of us, Rbkit plugs into a Ruby process,
|
58
|
+
and taps\n realtime data to be sent over the network. We use Msgpack for achieving\n
|
59
|
+
\ network transport.\n "
|
60
|
+
email: hemant@codemancers.com emil@codemancers.com kashyap@codemancers.com yuva@codemancers.com
|
59
61
|
executables: []
|
60
62
|
extensions:
|
61
63
|
- ext/extconf.rb
|
@@ -153,4 +155,3 @@ test_files:
|
|
153
155
|
- spec/status_spec.rb
|
154
156
|
- spec/support/foo_bar_sample_class.rb
|
155
157
|
- spec/support/have_message_matcher.rb
|
156
|
-
has_rdoc:
|