xdo 0.0.4
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.
- data/DEPRECATE.rdoc +11 -0
- data/HISTORY.rdoc +33 -0
- data/README.rdoc +53 -0
- data/VERSION +1 -0
- data/bin/xinfo.rb +155 -0
- data/lib/xdo.rb +37 -0
- data/lib/xdo/clipboard.rb +208 -0
- data/lib/xdo/drive.rb +125 -0
- data/lib/xdo/keyboard.rb +381 -0
- data/lib/xdo/mouse.rb +251 -0
- data/lib/xdo/simulatable.rb +89 -0
- data/lib/xdo/xwindow.rb +1006 -0
- data/samples/full_demo.rb +189 -0
- data/samples/mouse.rb +27 -0
- data/test/test_clipboard.rb +49 -0
- data/test/test_drive.rb +24 -0
- data/test/test_keyboard.rb +111 -0
- data/test/test_mouse.rb +29 -0
- data/test/test_xwindow.rb +97 -0
- metadata +115 -0
metadata
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: xdo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- "Marvin G\xC3\xBClker"
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-11-06 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: test-unit
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 2
|
30
|
+
- 0
|
31
|
+
version: "2.0"
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
34
|
+
description: |
|
35
|
+
XDo is a library to automate your mouse, fake keyboard input and
|
36
|
+
manipulate windows in a Linux X server environment. It's wrapped
|
37
|
+
around a lot of command line tools (see requirements) of which xdotool
|
38
|
+
is the main one, the others are usually installed. It's designed to work
|
39
|
+
only with Ruby 1.9.
|
40
|
+
|
41
|
+
email: sutniuq@gmx.net
|
42
|
+
executables:
|
43
|
+
- xinfo.rb
|
44
|
+
extensions: []
|
45
|
+
|
46
|
+
extra_rdoc_files:
|
47
|
+
- README.rdoc
|
48
|
+
- HISTORY.rdoc
|
49
|
+
- DEPRECATE.rdoc
|
50
|
+
files:
|
51
|
+
- bin/xinfo.rb
|
52
|
+
- lib/xdo/simulatable.rb
|
53
|
+
- lib/xdo/keyboard.rb
|
54
|
+
- lib/xdo/drive.rb
|
55
|
+
- lib/xdo/xwindow.rb
|
56
|
+
- lib/xdo/mouse.rb
|
57
|
+
- lib/xdo/clipboard.rb
|
58
|
+
- lib/xdo.rb
|
59
|
+
- test/test_clipboard.rb
|
60
|
+
- test/test_drive.rb
|
61
|
+
- test/test_xwindow.rb
|
62
|
+
- test/test_keyboard.rb
|
63
|
+
- test/test_mouse.rb
|
64
|
+
- samples/full_demo.rb
|
65
|
+
- samples/mouse.rb
|
66
|
+
- README.rdoc
|
67
|
+
- HISTORY.rdoc
|
68
|
+
- DEPRECATE.rdoc
|
69
|
+
- VERSION
|
70
|
+
has_rdoc: true
|
71
|
+
homepage: http://auto.rubyforge.org
|
72
|
+
licenses: []
|
73
|
+
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options:
|
76
|
+
- -t
|
77
|
+
- XDo RDocs
|
78
|
+
- -m
|
79
|
+
- README.rdoc
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
segments:
|
88
|
+
- 1
|
89
|
+
- 9
|
90
|
+
version: "1.9"
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
version: "0"
|
99
|
+
requirements:
|
100
|
+
- The xdotool command-line tool.
|
101
|
+
- The xsel command-line tool.
|
102
|
+
- xwininfo (usually installed)
|
103
|
+
- eject (usually installed)
|
104
|
+
- xkill (usually installed)
|
105
|
+
rubyforge_project: Automations
|
106
|
+
rubygems_version: 1.3.7
|
107
|
+
signing_key:
|
108
|
+
specification_version: 3
|
109
|
+
summary: Simulate keyboard and mouse input via a ruby interface to xdotool and other console programs.
|
110
|
+
test_files:
|
111
|
+
- test/test_clipboard.rb
|
112
|
+
- test/test_drive.rb
|
113
|
+
- test/test_xwindow.rb
|
114
|
+
- test/test_keyboard.rb
|
115
|
+
- test/test_mouse.rb
|