autoit 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/autoit.gemspec +2 -18
- data/lib/autoit/version.rb +1 -1
- metadata +4 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 337e5f599ff491bed94bea70bbc360cf05b5992b
|
4
|
+
data.tar.gz: 349d6f1e2c95ee9e6c73ef3d680d6f7dbb4cddcd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb22919e48eebc3c0aa982722ed5c6f8ebf37e8cbf729006ce9fdef2b299f9e380125b73cce7d8ac283c58d13426a2d012335365a5091068f737ce5fdc599686
|
7
|
+
data.tar.gz: 3398c70873084d655933c8df467e097d23629fcfedfcf16da43c90344499c06caf382ae4cba07979e7d6cf547313646f2f32cce6c2ec3897f26ce6372cec9d49
|
data/autoit.gemspec
CHANGED
@@ -6,27 +6,11 @@ require "autoit/version"
|
|
6
6
|
spec.version = Autoit::VERSION
|
7
7
|
spec.authors = ["Ronaldo Possan"]
|
8
8
|
spec.email = ["ronaldo.possan@gmail.com"]
|
9
|
-
|
10
|
-
spec.summary = <<-EOF
|
11
|
-
AutoIt is a gem to handle and integrate Windows Automation in your project and tests using the AutoIt software and Windows OLE
|
12
|
-
objects. With AutoIt gem you can run easily wrapper methods or run natives AutoIt commands.
|
13
|
-
Enjoy this awesome project together. Use, review, contribute and give us a STAR!
|
14
|
-
EOF
|
15
|
-
|
9
|
+
spec.summary = "A ruby gem to handle Windows objects with AutoIT for Automation and Tests projects."
|
16
10
|
spec.description = <<-EOF
|
17
11
|
AutoIt is a gem to integrate in your automation project and tests using the AutoIt software for interact with Windows OLE
|
18
|
-
|
19
|
-
|
20
|
-
We are building a new concept to match Windows elements called WPath. Yes, this is similar to the known XPath and we are
|
21
|
-
trying to bring this feature to easily find elements on the screen. For example: `//Calculator/Button[@id=135]` will match an
|
22
|
-
element on the screen with title "Calculator", with class Button and ID 135.
|
23
|
-
|
24
|
-
We recommend to build a project structure using BDD Cucumber (http://cucumber.io) with the gem BDDFire (https://github.com/Shashikant86/bddfire)
|
25
|
-
to have a complete and full of features tool for your automation project focused highly on your business, not just in code.
|
26
|
-
|
27
|
-
Enjoy this awesome project together. Use, review, contribute and give us a STAR!
|
12
|
+
bjects. With AutoIt gem you can run the easy wrapper methods or run natives AutoIt commands.
|
28
13
|
EOF
|
29
|
-
|
30
14
|
spec.homepage = "https://github.com/rpossan/autoit"
|
31
15
|
spec.license = "MIT"
|
32
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
data/lib/autoit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ronaldo Possan
|
@@ -96,16 +96,7 @@ dependencies:
|
|
96
96
|
version: 0.49.0
|
97
97
|
description: |
|
98
98
|
AutoIt is a gem to integrate in your automation project and tests using the AutoIt software for interact with Windows OLE
|
99
|
-
|
100
|
-
|
101
|
-
We are building a new concept to match Windows elements called WPath. Yes, this is similar to the known XPath and we are
|
102
|
-
trying to bring this feature to easily find elements on the screen. For example: `//Calculator/Button[@id=135]` will match an
|
103
|
-
element on the screen with title "Calculator", with class Button and ID 135.
|
104
|
-
|
105
|
-
We recommend to build a project structure using BDD Cucumber (http://cucumber.io) with the gem BDDFire (https://github.com/Shashikant86/bddfire)
|
106
|
-
to have a complete and full of features tool for your automation project focused highly on your business, not just in code.
|
107
|
-
|
108
|
-
Enjoy this awesome project together. Use, review, contribute and give us a STAR!
|
99
|
+
bjects. With AutoIt gem you can run the easy wrapper methods or run natives AutoIt commands.
|
109
100
|
email:
|
110
101
|
- ronaldo.possan@gmail.com
|
111
102
|
executables:
|
@@ -162,8 +153,6 @@ rubyforge_project:
|
|
162
153
|
rubygems_version: 2.6.12
|
163
154
|
signing_key:
|
164
155
|
specification_version: 4
|
165
|
-
summary:
|
166
|
-
|
167
|
-
can run easily wrapper methods or run natives AutoIt commands. Enjoy this awesome
|
168
|
-
project together. Use, review, contribute and give us a STAR!
|
156
|
+
summary: A ruby gem to handle Windows objects with AutoIT for Automation and Tests
|
157
|
+
projects.
|
169
158
|
test_files: []
|