win32-autogui 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- win32-autogui (0.2.0)
4
+ win32-autogui (0.2.1)
5
5
  win32-clipboard (>= 0.5.2)
6
6
  win32-process (>= 0.6.2)
7
7
  windows-api (>= 0.4.0)
data/HISTORY.markdown CHANGED
@@ -6,6 +6,10 @@ Most recent changes are at the top
6
6
  Changes
7
7
  -------
8
8
 
9
+ ### 0.2.1 - 11/05/2010 ###
10
+
11
+ * Added missing "require 'timeout'", fixes issue #1
12
+
9
13
  ### 0.2.0 - 11/04/2010 ###
10
14
 
11
15
  * Initial release
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.0
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
 
@@ -1,4 +1,5 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+ require 'timeout'
2
3
 
3
4
  include Autogui::Input
4
5
 
@@ -1,3 +1,4 @@
1
+ @calculator
1
2
  Feature: Automating a GUI application
2
3
 
3
4
  As a developer, I want to run automated tests on GUI applications
@@ -1,3 +1,4 @@
1
+ require 'timeout'
1
2
  require 'windows/process'
2
3
  require 'windows/synchronize'
3
4
  require 'windows/handle'
@@ -1,3 +1,4 @@
1
+ require 'timeout'
1
2
  require 'windows/window'
2
3
  require 'windows/window/message'
3
4
  require 'win32/autogui/windows/window'
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: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
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-04 00:00:00 -04:00
18
+ date: 2010-11-05 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency