win32-autogui 0.2.0 → 0.2.1
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/Gemfile.lock +1 -1
- data/HISTORY.markdown +4 -0
- data/README.markdown +3 -0
- data/VERSION +1 -1
- data/examples/quicknote/README.markdown +1 -0
- data/examples/quicknote/spec/quicknote/form_splash_spec.rb +1 -0
- data/features/automating_an_application.feature +1 -0
- data/lib/win32/autogui/application.rb +1 -0
- data/lib/win32/autogui/window.rb +1 -0
- metadata +4 -4
data/Gemfile.lock
CHANGED
data/HISTORY.markdown
CHANGED
data/README.markdown
CHANGED
|
@@ -19,6 +19,9 @@ See [examples/skeleton/README.markdown](examples/skeleton/README.markdown) for
|
|
|
19
19
|
a template of the file structure needed for jump-starting GUI testing with
|
|
20
20
|
the Win32-autogui RubyGem.
|
|
21
21
|
|
|
22
|
+
Read our introduction blog posting here: <http://www.gearheadforhire.com/articles/ruby/win32-autogui/using-ruby-to-drive-windows-applications>
|
|
23
|
+
|
|
24
|
+
|
|
22
25
|
|
|
23
26
|
Example Usage: Driving Calc.exe
|
|
24
27
|
-------------------------------
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
|
@@ -7,6 +7,7 @@ source code for the Win32-autogui gem. It is not fit for any other purpose.
|
|
|
7
7
|
|
|
8
8
|
Modifications to the load paths for use in a real world project
|
|
9
9
|
----------------------------------------------------------------
|
|
10
|
+
**NOTE:** _see examples/skeleton for a ready-to-go template._
|
|
10
11
|
|
|
11
12
|
spec/spec_helper.rb
|
|
12
13
|
|
data/lib/win32/autogui/window.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: win32-autogui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Robert Wahler
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-11-
|
|
18
|
+
date: 2010-11-05 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|