auto_click 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ 0.0.4
2
+ Add gem dependency requirement.
3
+
1
4
  0.0.3
2
5
  Fix gemspec description.
3
6
 
@@ -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.
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module AutoClick
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 3
9
- version: 0.0.3
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