autoit 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bcdc42b3af5f012fc43ad21f7bd2f4143f684251
4
- data.tar.gz: a97f63c5b5fdf161d114693defaeda588d96feae
3
+ metadata.gz: 53d50a4caae130f2996dedab201eb9f17bc09bf6
4
+ data.tar.gz: 3bd70d365820029870a9ede35a17b46bc6951fb5
5
5
  SHA512:
6
- metadata.gz: 8154ac4e62ee78d66d7371b5663b695f4ccc68200ee9e61516092cbdb40718ca34302d308cbd0cc586b10dad720a88c570932374ce7f824c1df0beb1b05588c1
7
- data.tar.gz: 6efca3836bea1dd65a6aff10576a7a58acbb3f62b0940c0c5a16fd4391bba1d43ae6ce3a34fac75e4b953389be551a7c9b05233a8bf78385846097aa303f0fa3
6
+ metadata.gz: 762d0d86f2ecc931a8acf8bf80f8a65029ad382d572e0e7bd127e09ac5a60dd19794d864fdbe98778b6a04bd059535e5fc0a19d25344691a317e2fd1711ad0f9
7
+ data.tar.gz: a4bf5d761b5ef749d81c92bf596e6b19a11b4980e3d0aa96b558d174015b7391893e3c7c88746924aaf5158570cc84e554bcf52fe857c4542ef3f0825b300cb9
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["ronaldo.possan@gmail.com"]
11
11
 
12
12
  spec.summary = "A ruby gem wrapper to interface with AutoIt"
13
- spec.description = "An interface to execute and automate Windows platform with AutoIt"
13
+ spec.description = "[ALPHA VERSION - Not completed!] An interface to execute and automate Windows platform with AutoIt"
14
14
  spec.homepage = "https://github.com/rpossan/autoit"
15
15
  spec.license = "MIT"
16
16
 
@@ -1,5 +1,6 @@
1
1
  require "autoit/version"
2
2
  require "autoit/control"
3
+
3
4
  module AutoIt
4
5
 
5
6
  end
@@ -9,6 +9,10 @@ class Control
9
9
  @win = WIN32OLE.new('AutoItX3.Control')
10
10
  end
11
11
 
12
+ def command(cmd, opt)
13
+ win.send(cmd, opt)
14
+ end
15
+
12
16
  def open_app(app)
13
17
  win.run app
14
18
  end
@@ -1,3 +1,3 @@
1
1
  module Autoit
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
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: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronaldo Possan
@@ -94,7 +94,8 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '10.0'
97
- description: An interface to execute and automate Windows platform with AutoIt
97
+ description: "[ALPHA VERSION - Not completed!] An interface to execute and automate
98
+ Windows platform with AutoIt"
98
99
  email:
99
100
  - ronaldo.possan@gmail.com
100
101
  executables: []