auto_click 0.0.3 → 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/CHANGELOG +3 -0
- data/README.rdoc +10 -0
- data/auto_click.gemspec +2 -0
- data/lib/auto_click/version.rb +1 -1
- metadata +18 -4
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
@@ -4,8 +4,18 @@ Ruby gem for simulating mouse clicks and mouse cursor movement.
|
|
4
4
|
|
5
5
|
== Install
|
6
6
|
|
7
|
+
To install auto_click:
|
8
|
+
|
7
9
|
gem install auto_click
|
10
|
+
|
11
|
+
You need Win32-api gem for auto_click to work properly:
|
12
|
+
|
13
|
+
gem install Win32-api
|
14
|
+
|
15
|
+
or if you have trouble installing it:
|
8
16
|
|
17
|
+
gem install Win32-api --platform=ruby
|
18
|
+
|
9
19
|
== Usage
|
10
20
|
|
11
21
|
To use the methods provided by auto_click. You need to require it.
|
data/auto_click.gemspec
CHANGED
@@ -11,6 +11,8 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.homepage = ""
|
12
12
|
s.summary = %q{Smulating mouse click and cursor movement in Ruby}
|
13
13
|
s.description = %q{Provide several ruby methods for simulating mouse click and cursor movement in Windows. Currently only contains 5 methods (mouse_move(x,y), left_click, right_click, cursor_position and mouse_scroll).}
|
14
|
+
|
15
|
+
s.add_dependency('win32-api', '>=1.4.7')
|
14
16
|
|
15
17
|
# s.rubyforge_project = "auto_click"
|
16
18
|
|
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
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- erinata
|
@@ -16,8 +16,22 @@ cert_chain: []
|
|
16
16
|
|
17
17
|
date: 2010-12-26 00:00:00 -06:00
|
18
18
|
default_executable:
|
19
|
-
dependencies:
|
20
|
-
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: win32-api
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 1
|
30
|
+
- 4
|
31
|
+
- 7
|
32
|
+
version: 1.4.7
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
21
35
|
description: Provide several ruby methods for simulating mouse click and cursor movement in Windows. Currently only contains 5 methods (mouse_move(x,y), left_click, right_click, cursor_position and mouse_scroll).
|
22
36
|
email:
|
23
37
|
- erinata@gmail.com
|