em-ruby-dbus 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/COPYING +504 -0
- data/NEWS +253 -0
- data/README.md +93 -0
- data/Rakefile +58 -0
- data/VERSION +1 -0
- data/doc/Reference.md +207 -0
- data/doc/Tutorial.md +480 -0
- data/doc/ex-calling-methods.body.rb +8 -0
- data/doc/ex-calling-methods.rb +3 -0
- data/doc/ex-properties.body.rb +9 -0
- data/doc/ex-properties.rb +3 -0
- data/doc/ex-setup.rb +7 -0
- data/doc/ex-signal.body.rb +20 -0
- data/doc/ex-signal.rb +3 -0
- data/doc/example-helper.rb +6 -0
- data/em-ruby-dbus.gemspec +20 -0
- data/examples/gdbus/gdbus +255 -0
- data/examples/gdbus/gdbus.glade +184 -0
- data/examples/gdbus/launch.sh +4 -0
- data/examples/no-introspect/nm-test.rb +21 -0
- data/examples/no-introspect/tracker-test.rb +16 -0
- data/examples/rhythmbox/playpause.rb +25 -0
- data/examples/service/call_service.rb +25 -0
- data/examples/service/service_newapi.rb +51 -0
- data/examples/simple/call_introspect.rb +34 -0
- data/examples/simple/properties.rb +19 -0
- data/examples/utils/listnames.rb +11 -0
- data/examples/utils/notify.rb +19 -0
- data/lib/dbus.rb +82 -0
- data/lib/dbus/auth.rb +269 -0
- data/lib/dbus/bus.rb +739 -0
- data/lib/dbus/core_ext/array/extract_options.rb +31 -0
- data/lib/dbus/core_ext/class/attribute.rb +129 -0
- data/lib/dbus/core_ext/kernel/singleton_class.rb +8 -0
- data/lib/dbus/core_ext/module/remove_method.rb +14 -0
- data/lib/dbus/error.rb +46 -0
- data/lib/dbus/export.rb +128 -0
- data/lib/dbus/introspect.rb +219 -0
- data/lib/dbus/logger.rb +31 -0
- data/lib/dbus/loop-em.rb +19 -0
- data/lib/dbus/marshall.rb +434 -0
- data/lib/dbus/matchrule.rb +101 -0
- data/lib/dbus/message.rb +276 -0
- data/lib/dbus/message_queue.rb +166 -0
- data/lib/dbus/proxy_object.rb +149 -0
- data/lib/dbus/proxy_object_factory.rb +41 -0
- data/lib/dbus/proxy_object_interface.rb +128 -0
- data/lib/dbus/type.rb +193 -0
- data/lib/dbus/xml.rb +161 -0
- data/test/async_spec.rb +47 -0
- data/test/binding_spec.rb +74 -0
- data/test/bus_and_xml_backend_spec.rb +39 -0
- data/test/bus_driver_spec.rb +20 -0
- data/test/bus_spec.rb +20 -0
- data/test/byte_array_spec.rb +38 -0
- data/test/err_msg_spec.rb +42 -0
- data/test/introspect_xml_parser_spec.rb +26 -0
- data/test/introspection_spec.rb +32 -0
- data/test/main_loop_spec.rb +82 -0
- data/test/property_spec.rb +53 -0
- data/test/server_robustness_spec.rb +66 -0
- data/test/server_spec.rb +53 -0
- data/test/service_newapi.rb +217 -0
- data/test/session_bus_spec_manual.rb +15 -0
- data/test/signal_spec.rb +90 -0
- data/test/spec_helper.rb +33 -0
- data/test/thread_safety_spec.rb +31 -0
- data/test/tools/dbus-launch-simple +35 -0
- data/test/tools/dbus-limited-session.conf +28 -0
- data/test/tools/test_env +13 -0
- data/test/tools/test_server +39 -0
- data/test/type_spec.rb +19 -0
- data/test/value_spec.rb +81 -0
- data/test/variant_spec.rb +66 -0
- metadata +145 -0
metadata
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: em-ruby-dbus
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.11.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ruby DBus Team
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-05-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: packaging_rake_tasks
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
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: rspec
|
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: Pure Ruby module for interaction with D-Bus IPC system
|
42
|
+
email: ruby-dbus-devel@lists.luon.net
|
43
|
+
executables: []
|
44
|
+
extensions: []
|
45
|
+
extra_rdoc_files: []
|
46
|
+
files:
|
47
|
+
- COPYING
|
48
|
+
- NEWS
|
49
|
+
- README.md
|
50
|
+
- Rakefile
|
51
|
+
- VERSION
|
52
|
+
- doc/Reference.md
|
53
|
+
- doc/Tutorial.md
|
54
|
+
- doc/ex-calling-methods.body.rb
|
55
|
+
- doc/ex-calling-methods.rb
|
56
|
+
- doc/ex-properties.body.rb
|
57
|
+
- doc/ex-properties.rb
|
58
|
+
- doc/ex-setup.rb
|
59
|
+
- doc/ex-signal.body.rb
|
60
|
+
- doc/ex-signal.rb
|
61
|
+
- doc/example-helper.rb
|
62
|
+
- em-ruby-dbus.gemspec
|
63
|
+
- examples/gdbus/gdbus
|
64
|
+
- examples/gdbus/gdbus.glade
|
65
|
+
- examples/gdbus/launch.sh
|
66
|
+
- examples/no-introspect/nm-test.rb
|
67
|
+
- examples/no-introspect/tracker-test.rb
|
68
|
+
- examples/rhythmbox/playpause.rb
|
69
|
+
- examples/service/call_service.rb
|
70
|
+
- examples/service/service_newapi.rb
|
71
|
+
- examples/simple/call_introspect.rb
|
72
|
+
- examples/simple/properties.rb
|
73
|
+
- examples/utils/listnames.rb
|
74
|
+
- examples/utils/notify.rb
|
75
|
+
- lib/dbus.rb
|
76
|
+
- lib/dbus/auth.rb
|
77
|
+
- lib/dbus/bus.rb
|
78
|
+
- lib/dbus/core_ext/array/extract_options.rb
|
79
|
+
- lib/dbus/core_ext/class/attribute.rb
|
80
|
+
- lib/dbus/core_ext/kernel/singleton_class.rb
|
81
|
+
- lib/dbus/core_ext/module/remove_method.rb
|
82
|
+
- lib/dbus/error.rb
|
83
|
+
- lib/dbus/export.rb
|
84
|
+
- lib/dbus/introspect.rb
|
85
|
+
- lib/dbus/logger.rb
|
86
|
+
- lib/dbus/loop-em.rb
|
87
|
+
- lib/dbus/marshall.rb
|
88
|
+
- lib/dbus/matchrule.rb
|
89
|
+
- lib/dbus/message.rb
|
90
|
+
- lib/dbus/message_queue.rb
|
91
|
+
- lib/dbus/proxy_object.rb
|
92
|
+
- lib/dbus/proxy_object_factory.rb
|
93
|
+
- lib/dbus/proxy_object_interface.rb
|
94
|
+
- lib/dbus/type.rb
|
95
|
+
- lib/dbus/xml.rb
|
96
|
+
- test/async_spec.rb
|
97
|
+
- test/binding_spec.rb
|
98
|
+
- test/bus_and_xml_backend_spec.rb
|
99
|
+
- test/bus_driver_spec.rb
|
100
|
+
- test/bus_spec.rb
|
101
|
+
- test/byte_array_spec.rb
|
102
|
+
- test/err_msg_spec.rb
|
103
|
+
- test/introspect_xml_parser_spec.rb
|
104
|
+
- test/introspection_spec.rb
|
105
|
+
- test/main_loop_spec.rb
|
106
|
+
- test/property_spec.rb
|
107
|
+
- test/server_robustness_spec.rb
|
108
|
+
- test/server_spec.rb
|
109
|
+
- test/service_newapi.rb
|
110
|
+
- test/session_bus_spec_manual.rb
|
111
|
+
- test/signal_spec.rb
|
112
|
+
- test/spec_helper.rb
|
113
|
+
- test/thread_safety_spec.rb
|
114
|
+
- test/tools/dbus-launch-simple
|
115
|
+
- test/tools/dbus-limited-session.conf
|
116
|
+
- test/tools/test_env
|
117
|
+
- test/tools/test_server
|
118
|
+
- test/type_spec.rb
|
119
|
+
- test/value_spec.rb
|
120
|
+
- test/variant_spec.rb
|
121
|
+
homepage: https://github.com/saepia/em-ruby-dbus
|
122
|
+
licenses:
|
123
|
+
- LGPL v2.1
|
124
|
+
metadata: {}
|
125
|
+
post_install_message:
|
126
|
+
rdoc_options: []
|
127
|
+
require_paths:
|
128
|
+
- lib
|
129
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 1.9.3
|
134
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
requirements: []
|
140
|
+
rubyforge_project:
|
141
|
+
rubygems_version: 2.2.2
|
142
|
+
signing_key:
|
143
|
+
specification_version: 4
|
144
|
+
summary: Ruby module for interaction with D-Bus (with EventMachine support)
|
145
|
+
test_files: []
|