auto_click 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/auto_click.gemspec +4 -4
- data/lib/auto_click/version.rb +1 -1
- metadata +3 -7
data/auto_click.gemspec
CHANGED
@@ -10,10 +10,10 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.email = ["erinata@gmail.com"]
|
11
11
|
s.homepage = ""
|
12
12
|
s.summary = %q{Smulating mouse click and cursor movement}
|
13
|
-
s.description = %q{Provide several Ruby methods for simulating mouse click and cursor movement in Windows
|
14
|
-
|
15
|
-
|
16
|
-
|
13
|
+
s.description = %q{Provide several Ruby methods for simulating mouse click and cursor movement in Windows.}
|
14
|
+
%q{This gem use DL library and SendInput method so there is no dependency on FFI, AutoIt or Win32-api.}
|
15
|
+
%q{Currently contains 7 methods (mouse_move(x,y), left_click, right_click, cursor_position, mouse_scroll, left_drag and right drag).}
|
16
|
+
%q{More control over mouse movement such as speed or locus will be implemented in future releases.}
|
17
17
|
|
18
18
|
s.required_ruby_version = '>= 1.9.0'
|
19
19
|
|
data/lib/auto_click/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 5
|
9
|
+
version: 0.1.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- erinata
|
@@ -18,11 +18,7 @@ date: 2011-01-03 00:00:00 -06:00
|
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
21
|
-
description:
|
22
|
-
Provide several Ruby methods for simulating mouse click and cursor movement in Windows.\n
|
23
|
-
This gem use DL library and SendInput method so there is no dependency on FFI, AutoIt or Win32-api.\n
|
24
|
-
Currently contains 7 methods (mouse_move(x,y), left_click, right_click, cursor_position, mouse_scroll, left_drag and right drag).\n
|
25
|
-
More control over mouse movement such as speed or locus will be implemented in future releases.
|
21
|
+
description: Provide several Ruby methods for simulating mouse click and cursor movement in Windows.
|
26
22
|
email:
|
27
23
|
- erinata@gmail.com
|
28
24
|
executables: []
|