win32-autogui 0.2.0
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/.gitattributes +1 -0
- data/.gitignore +10 -0
- data/.yardopts +6 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +60 -0
- data/HISTORY.markdown +11 -0
- data/LICENSE +20 -0
- data/README.markdown +265 -0
- data/Rakefile +55 -0
- data/TODO.markdown +9 -0
- data/VERSION +1 -0
- data/config/cucumber.yml +7 -0
- data/examples/quicknote/.gitignore +8 -0
- data/examples/quicknote/FormAboutU.dfm +44 -0
- data/examples/quicknote/FormAboutU.pas +36 -0
- data/examples/quicknote/FormMainU.dfm +110 -0
- data/examples/quicknote/FormMainU.pas +268 -0
- data/examples/quicknote/FormSplashU.dfm +32 -0
- data/examples/quicknote/FormSplashU.pas +52 -0
- data/examples/quicknote/LICENSE +20 -0
- data/examples/quicknote/README.markdown +28 -0
- data/examples/quicknote/Rakefile +12 -0
- data/examples/quicknote/TODO.markdown +15 -0
- data/examples/quicknote/dcu/.gitignore +1 -0
- data/examples/quicknote/exe/.gitignore +0 -0
- data/examples/quicknote/exe/quicknote.exe +0 -0
- data/examples/quicknote/lib/quicknote.rb +140 -0
- data/examples/quicknote/quicknote.cfg +37 -0
- data/examples/quicknote/quicknote.dof +158 -0
- data/examples/quicknote/quicknote.dpr +16 -0
- data/examples/quicknote/quicknote.res +0 -0
- data/examples/quicknote/spec/quicknote/form_about_spec.rb +50 -0
- data/examples/quicknote/spec/quicknote/form_main_spec.rb +274 -0
- data/examples/quicknote/spec/quicknote/form_splash_spec.rb +44 -0
- data/examples/quicknote/spec/spec.opts +2 -0
- data/examples/quicknote/spec/spec_helper.rb +34 -0
- data/examples/quicknote/spec/watchr.rb +143 -0
- data/examples/skeleton/.gitignore +8 -0
- data/examples/skeleton/LICENSE +20 -0
- data/examples/skeleton/README.markdown +62 -0
- data/examples/skeleton/Rakefile +21 -0
- data/examples/skeleton/TODO.markdown +9 -0
- data/examples/skeleton/config/cucumber.yml +7 -0
- data/examples/skeleton/dcu/.gitignore +1 -0
- data/examples/skeleton/exe/.gitignore +1 -0
- data/examples/skeleton/features/basic.feature +6 -0
- data/examples/skeleton/features/step_definitions/.gitignore +0 -0
- data/examples/skeleton/features/step_definitions/application_steps.rb +43 -0
- data/examples/skeleton/features/support/env.rb +5 -0
- data/examples/skeleton/lib/myapp.rb +73 -0
- data/examples/skeleton/spec/myapp/form_about_spec.rb +50 -0
- data/examples/skeleton/spec/myapp/form_main_spec.rb +60 -0
- data/examples/skeleton/spec/spec.opts +2 -0
- data/examples/skeleton/spec/spec_helper.rb +29 -0
- data/examples/skeleton/spec/watchr.rb +143 -0
- data/features/automating_an_application.feature +11 -0
- data/features/step_definitions/.gitignore +0 -0
- data/features/step_definitions/calculator_steps.rb +37 -0
- data/features/support/env.rb +4 -0
- data/lib/win32/autogui.rb +27 -0
- data/lib/win32/autogui/application.rb +249 -0
- data/lib/win32/autogui/input.rb +238 -0
- data/lib/win32/autogui/window.rb +191 -0
- data/lib/win32/autogui/windows/window.rb +22 -0
- data/spec/applications/calculator.rb +34 -0
- data/spec/auto_gui/application_spec.rb +132 -0
- data/spec/basic_gem/basic_gem_spec.rb +13 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/watchr.rb +144 -0
- data/win32-autogui.gemspec +43 -0
- metadata +329 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
#
|
3
|
+
#
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "win32-autogui"
|
7
|
+
s.version = File.open(File.join(File.dirname(__FILE__), *%w[VERSION]), "r") { |f| f.read }
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Robert Wahler"]
|
10
|
+
s.email = ["robert@gearheadforhire.com"]
|
11
|
+
s.homepage = "http://rubygems.org/gems/win32-autogui"
|
12
|
+
s.summary = "Win32 GUI testing framework"
|
13
|
+
s.description = "Win32 GUI testing framework"
|
14
|
+
|
15
|
+
s.required_rubygems_version = ">= 1.3.6"
|
16
|
+
s.rubyforge_project = "win32-autogui"
|
17
|
+
|
18
|
+
s.add_dependency "windows-api", ">= 0.4.0"
|
19
|
+
s.add_dependency "windows-pr", ">= 1.0.9"
|
20
|
+
s.add_dependency "win32-process", ">= 0.6.2"
|
21
|
+
s.add_dependency "win32-clipboard", ">= 0.5.2"
|
22
|
+
|
23
|
+
s.add_development_dependency "bundler", ">= 1.0.3"
|
24
|
+
s.add_development_dependency "rspec", "= 1.3.1"
|
25
|
+
s.add_development_dependency "cucumber", ">= 0.9.2"
|
26
|
+
s.add_development_dependency "aruba", ">= 0.2.3"
|
27
|
+
s.add_development_dependency "rake", ">= 0.8.7"
|
28
|
+
s.add_development_dependency "yard", ">= 0.6.1"
|
29
|
+
s.add_development_dependency "rdiscount", ">= 1.6.5"
|
30
|
+
|
31
|
+
s.files = `git ls-files`.split("\n")
|
32
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
33
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
34
|
+
s.require_path = 'lib'
|
35
|
+
|
36
|
+
s.has_rdoc = 'yard'
|
37
|
+
s.rdoc_options = [
|
38
|
+
'--title', 'Win32-Autogui Documentation',
|
39
|
+
'--main', 'README.markdown',
|
40
|
+
'--line-numbers',
|
41
|
+
'--inline-source'
|
42
|
+
]
|
43
|
+
end
|
metadata
ADDED
@@ -0,0 +1,329 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: win32-autogui
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 0.2.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Robert Wahler
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-11-04 00:00:00 -04:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
23
|
+
none: false
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
hash: 15
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 4
|
31
|
+
- 0
|
32
|
+
version: 0.4.0
|
33
|
+
requirement: *id001
|
34
|
+
type: :runtime
|
35
|
+
name: windows-api
|
36
|
+
prerelease: false
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 5
|
44
|
+
segments:
|
45
|
+
- 1
|
46
|
+
- 0
|
47
|
+
- 9
|
48
|
+
version: 1.0.9
|
49
|
+
requirement: *id002
|
50
|
+
type: :runtime
|
51
|
+
name: windows-pr
|
52
|
+
prerelease: false
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
hash: 3
|
60
|
+
segments:
|
61
|
+
- 0
|
62
|
+
- 6
|
63
|
+
- 2
|
64
|
+
version: 0.6.2
|
65
|
+
requirement: *id003
|
66
|
+
type: :runtime
|
67
|
+
name: win32-process
|
68
|
+
prerelease: false
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 15
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
- 5
|
79
|
+
- 2
|
80
|
+
version: 0.5.2
|
81
|
+
requirement: *id004
|
82
|
+
type: :runtime
|
83
|
+
name: win32-clipboard
|
84
|
+
prerelease: false
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
hash: 17
|
92
|
+
segments:
|
93
|
+
- 1
|
94
|
+
- 0
|
95
|
+
- 3
|
96
|
+
version: 1.0.3
|
97
|
+
requirement: *id005
|
98
|
+
type: :development
|
99
|
+
name: bundler
|
100
|
+
prerelease: false
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
103
|
+
none: false
|
104
|
+
requirements:
|
105
|
+
- - "="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
hash: 25
|
108
|
+
segments:
|
109
|
+
- 1
|
110
|
+
- 3
|
111
|
+
- 1
|
112
|
+
version: 1.3.1
|
113
|
+
requirement: *id006
|
114
|
+
type: :development
|
115
|
+
name: rspec
|
116
|
+
prerelease: false
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
119
|
+
none: false
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
hash: 63
|
124
|
+
segments:
|
125
|
+
- 0
|
126
|
+
- 9
|
127
|
+
- 2
|
128
|
+
version: 0.9.2
|
129
|
+
requirement: *id007
|
130
|
+
type: :development
|
131
|
+
name: cucumber
|
132
|
+
prerelease: false
|
133
|
+
- !ruby/object:Gem::Dependency
|
134
|
+
version_requirements: &id008 !ruby/object:Gem::Requirement
|
135
|
+
none: false
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
hash: 17
|
140
|
+
segments:
|
141
|
+
- 0
|
142
|
+
- 2
|
143
|
+
- 3
|
144
|
+
version: 0.2.3
|
145
|
+
requirement: *id008
|
146
|
+
type: :development
|
147
|
+
name: aruba
|
148
|
+
prerelease: false
|
149
|
+
- !ruby/object:Gem::Dependency
|
150
|
+
version_requirements: &id009 !ruby/object:Gem::Requirement
|
151
|
+
none: false
|
152
|
+
requirements:
|
153
|
+
- - ">="
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
hash: 49
|
156
|
+
segments:
|
157
|
+
- 0
|
158
|
+
- 8
|
159
|
+
- 7
|
160
|
+
version: 0.8.7
|
161
|
+
requirement: *id009
|
162
|
+
type: :development
|
163
|
+
name: rake
|
164
|
+
prerelease: false
|
165
|
+
- !ruby/object:Gem::Dependency
|
166
|
+
version_requirements: &id010 !ruby/object:Gem::Requirement
|
167
|
+
none: false
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
hash: 5
|
172
|
+
segments:
|
173
|
+
- 0
|
174
|
+
- 6
|
175
|
+
- 1
|
176
|
+
version: 0.6.1
|
177
|
+
requirement: *id010
|
178
|
+
type: :development
|
179
|
+
name: yard
|
180
|
+
prerelease: false
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
version_requirements: &id011 !ruby/object:Gem::Requirement
|
183
|
+
none: false
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
hash: 5
|
188
|
+
segments:
|
189
|
+
- 1
|
190
|
+
- 6
|
191
|
+
- 5
|
192
|
+
version: 1.6.5
|
193
|
+
requirement: *id011
|
194
|
+
type: :development
|
195
|
+
name: rdiscount
|
196
|
+
prerelease: false
|
197
|
+
description: Win32 GUI testing framework
|
198
|
+
email:
|
199
|
+
- robert@gearheadforhire.com
|
200
|
+
executables: []
|
201
|
+
|
202
|
+
extensions: []
|
203
|
+
|
204
|
+
extra_rdoc_files: []
|
205
|
+
|
206
|
+
files:
|
207
|
+
- .gitattributes
|
208
|
+
- .gitignore
|
209
|
+
- .yardopts
|
210
|
+
- Gemfile
|
211
|
+
- Gemfile.lock
|
212
|
+
- HISTORY.markdown
|
213
|
+
- LICENSE
|
214
|
+
- README.markdown
|
215
|
+
- Rakefile
|
216
|
+
- TODO.markdown
|
217
|
+
- VERSION
|
218
|
+
- config/cucumber.yml
|
219
|
+
- examples/quicknote/.gitignore
|
220
|
+
- examples/quicknote/FormAboutU.dfm
|
221
|
+
- examples/quicknote/FormAboutU.pas
|
222
|
+
- examples/quicknote/FormMainU.dfm
|
223
|
+
- examples/quicknote/FormMainU.pas
|
224
|
+
- examples/quicknote/FormSplashU.dfm
|
225
|
+
- examples/quicknote/FormSplashU.pas
|
226
|
+
- examples/quicknote/LICENSE
|
227
|
+
- examples/quicknote/README.markdown
|
228
|
+
- examples/quicknote/Rakefile
|
229
|
+
- examples/quicknote/TODO.markdown
|
230
|
+
- examples/quicknote/dcu/.gitignore
|
231
|
+
- examples/quicknote/exe/.gitignore
|
232
|
+
- examples/quicknote/exe/quicknote.exe
|
233
|
+
- examples/quicknote/lib/quicknote.rb
|
234
|
+
- examples/quicknote/quicknote.cfg
|
235
|
+
- examples/quicknote/quicknote.dof
|
236
|
+
- examples/quicknote/quicknote.dpr
|
237
|
+
- examples/quicknote/quicknote.res
|
238
|
+
- examples/quicknote/spec/quicknote/form_about_spec.rb
|
239
|
+
- examples/quicknote/spec/quicknote/form_main_spec.rb
|
240
|
+
- examples/quicknote/spec/quicknote/form_splash_spec.rb
|
241
|
+
- examples/quicknote/spec/spec.opts
|
242
|
+
- examples/quicknote/spec/spec_helper.rb
|
243
|
+
- examples/quicknote/spec/watchr.rb
|
244
|
+
- examples/skeleton/.gitignore
|
245
|
+
- examples/skeleton/LICENSE
|
246
|
+
- examples/skeleton/README.markdown
|
247
|
+
- examples/skeleton/Rakefile
|
248
|
+
- examples/skeleton/TODO.markdown
|
249
|
+
- examples/skeleton/config/cucumber.yml
|
250
|
+
- examples/skeleton/dcu/.gitignore
|
251
|
+
- examples/skeleton/exe/.gitignore
|
252
|
+
- examples/skeleton/features/basic.feature
|
253
|
+
- examples/skeleton/features/step_definitions/.gitignore
|
254
|
+
- examples/skeleton/features/step_definitions/application_steps.rb
|
255
|
+
- examples/skeleton/features/support/env.rb
|
256
|
+
- examples/skeleton/lib/myapp.rb
|
257
|
+
- examples/skeleton/spec/myapp/form_about_spec.rb
|
258
|
+
- examples/skeleton/spec/myapp/form_main_spec.rb
|
259
|
+
- examples/skeleton/spec/spec.opts
|
260
|
+
- examples/skeleton/spec/spec_helper.rb
|
261
|
+
- examples/skeleton/spec/watchr.rb
|
262
|
+
- features/automating_an_application.feature
|
263
|
+
- features/step_definitions/.gitignore
|
264
|
+
- features/step_definitions/calculator_steps.rb
|
265
|
+
- features/support/env.rb
|
266
|
+
- lib/win32/autogui.rb
|
267
|
+
- lib/win32/autogui/application.rb
|
268
|
+
- lib/win32/autogui/input.rb
|
269
|
+
- lib/win32/autogui/window.rb
|
270
|
+
- lib/win32/autogui/windows/window.rb
|
271
|
+
- spec/applications/calculator.rb
|
272
|
+
- spec/auto_gui/application_spec.rb
|
273
|
+
- spec/basic_gem/basic_gem_spec.rb
|
274
|
+
- spec/spec.opts
|
275
|
+
- spec/spec_helper.rb
|
276
|
+
- spec/watchr.rb
|
277
|
+
- win32-autogui.gemspec
|
278
|
+
has_rdoc: yard
|
279
|
+
homepage: http://rubygems.org/gems/win32-autogui
|
280
|
+
licenses: []
|
281
|
+
|
282
|
+
post_install_message:
|
283
|
+
rdoc_options:
|
284
|
+
- --title
|
285
|
+
- Win32-Autogui Documentation
|
286
|
+
- --main
|
287
|
+
- README.markdown
|
288
|
+
- --line-numbers
|
289
|
+
- --inline-source
|
290
|
+
require_paths:
|
291
|
+
- lib
|
292
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
293
|
+
none: false
|
294
|
+
requirements:
|
295
|
+
- - ">="
|
296
|
+
- !ruby/object:Gem::Version
|
297
|
+
hash: 3
|
298
|
+
segments:
|
299
|
+
- 0
|
300
|
+
version: "0"
|
301
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
302
|
+
none: false
|
303
|
+
requirements:
|
304
|
+
- - ">="
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
hash: 23
|
307
|
+
segments:
|
308
|
+
- 1
|
309
|
+
- 3
|
310
|
+
- 6
|
311
|
+
version: 1.3.6
|
312
|
+
requirements: []
|
313
|
+
|
314
|
+
rubyforge_project: win32-autogui
|
315
|
+
rubygems_version: 1.3.7
|
316
|
+
signing_key:
|
317
|
+
specification_version: 3
|
318
|
+
summary: Win32 GUI testing framework
|
319
|
+
test_files:
|
320
|
+
- features/automating_an_application.feature
|
321
|
+
- features/step_definitions/.gitignore
|
322
|
+
- features/step_definitions/calculator_steps.rb
|
323
|
+
- features/support/env.rb
|
324
|
+
- spec/applications/calculator.rb
|
325
|
+
- spec/auto_gui/application_spec.rb
|
326
|
+
- spec/basic_gem/basic_gem_spec.rb
|
327
|
+
- spec/spec.opts
|
328
|
+
- spec/spec_helper.rb
|
329
|
+
- spec/watchr.rb
|