intruder 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +38 -0
- metadata +62 -0
data/README.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
**A little WIP again**
|
2
|
+
|
3
|
+
What is it?
|
4
|
+
===========
|
5
|
+
|
6
|
+
A ruby library with a C extension to interact with erlang processes.
|
7
|
+
At the moment it's my fun project to get my feet wet with C. Stay tuned :)
|
8
|
+
|
9
|
+
Want to try?
|
10
|
+
============
|
11
|
+
|
12
|
+
the test script makes an rpc call to a rabbitmq server and queries for its status.
|
13
|
+
|
14
|
+
* checkout the source
|
15
|
+
* `./configure`
|
16
|
+
* start your rabbitmq server `sudo rabbitmq-server`
|
17
|
+
* `ruby test.rb`
|
18
|
+
|
19
|
+
the script should print something similar to this:
|
20
|
+
rabbit call
|
21
|
+
sending params: []
|
22
|
+
rpc call to rabbit:status
|
23
|
+
rpc response: [{running_applications, [{rabbit, "RabbitMQ", "1.7.2"}, {mnesia, "MNESIA CXC 138 12", "4.4.13"}, {os_mon, "CPO CXC 138 46", "2.2.5"}, {sasl, "SASL CXC 138 11", "2.1.9"}, {stdlib, "ERTS CXC 138 10", "1.16.5"}, {kernel, "ERTS CXC 138 10", "2.13.5"}]}, {nodes, [rabbit@codeslave]}, {running_nodes, [rabbit@codeslave]}]
|
24
|
+
|
25
|
+
Why that?
|
26
|
+
=========
|
27
|
+
|
28
|
+
because thats a fun project to learn c :)
|
29
|
+
|
30
|
+
What works already?
|
31
|
+
===================
|
32
|
+
|
33
|
+
not much
|
34
|
+
|
35
|
+
Erlix?
|
36
|
+
======
|
37
|
+
|
38
|
+
is great, took some stuff from there, as I said, thats a fun project for me to learn more about c and c ruby extensions
|
metadata
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: intruder
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Pascal Friederich
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-03-11 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: ===========
|
22
|
+
email: paukul@gmail.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files:
|
28
|
+
- README.md
|
29
|
+
files: []
|
30
|
+
|
31
|
+
has_rdoc: true
|
32
|
+
homepage: http://github.com/paukul/intruder
|
33
|
+
licenses: []
|
34
|
+
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
|
38
|
+
require_paths:
|
39
|
+
- lib
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
version: "0"
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
segments:
|
52
|
+
- 0
|
53
|
+
version: "0"
|
54
|
+
requirements: []
|
55
|
+
|
56
|
+
rubyforge_project:
|
57
|
+
rubygems_version: 1.3.6
|
58
|
+
signing_key:
|
59
|
+
specification_version: 3
|
60
|
+
summary: Communicate with erlang from within ruby as a ruby c erlang node
|
61
|
+
test_files: []
|
62
|
+
|