uia 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/ext/.gitignore +151 -0
- data/ext/UiaDll/Release/UIA.Helper.dll +0 -0
- data/ext/UiaDll/Release/UiaDll.dll +0 -0
- data/ext/UiaDll/UIA.Helper/AutomationProperty.cs +24 -0
- data/ext/UiaDll/UIA.Helper/Clicker.cs +34 -0
- data/ext/UiaDll/UIA.Helper/Element.cs +87 -0
- data/ext/UiaDll/UIA.Helper/Extensions.cs +74 -0
- data/ext/UiaDll/UIA.Helper/Properties/AssemblyInfo.cs +36 -0
- data/ext/UiaDll/UIA.Helper/UIA.Helper.csproj +62 -0
- data/ext/UiaDll/UiaDll/ArrayHelper.cpp +22 -0
- data/ext/UiaDll/UiaDll/ArrayHelper.h +8 -0
- data/ext/UiaDll/UiaDll/AssemblyInfo.cpp +40 -0
- data/ext/UiaDll/UiaDll/DynamicAssemblyResolver.cpp +24 -0
- data/ext/UiaDll/UiaDll/DynamicAssemblyResolver.h +16 -0
- data/ext/UiaDll/UiaDll/ElementMethods.cpp +73 -0
- data/ext/UiaDll/UiaDll/ElementStructures.h +52 -0
- data/ext/UiaDll/UiaDll/ReadMe.txt +38 -0
- data/ext/UiaDll/UiaDll/Stdafx.cpp +5 -0
- data/ext/UiaDll/UiaDll/Stdafx.h +14 -0
- data/ext/UiaDll/UiaDll/StringHelper.cpp +17 -0
- data/ext/UiaDll/UiaDll/StringHelper.h +11 -0
- data/ext/UiaDll/UiaDll/UiaDll.cpp +9 -0
- data/ext/UiaDll/UiaDll/UiaDll.h +13 -0
- data/ext/UiaDll/UiaDll/UiaDll.vcxproj +105 -0
- data/ext/UiaDll/UiaDll/UiaDll.vcxproj.filters +57 -0
- data/ext/UiaDll/UiaDll/app.rc +0 -0
- data/ext/UiaDll/UiaDll.sln +42 -0
- data/lib/uia/version.rb +3 -0
- data/lib/uia.rb +117 -0
- data/uia.gemspec +30 -0
- metadata +130 -0
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: uia
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.4
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Levi Wilson
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-10-11 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: ffi
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: bundler
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.3'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.3'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: This wraps UIA stuff
|
63
|
+
email:
|
64
|
+
- levi@leviwilson.com
|
65
|
+
executables: []
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- .gitignore
|
70
|
+
- Gemfile
|
71
|
+
- LICENSE.txt
|
72
|
+
- README.md
|
73
|
+
- Rakefile
|
74
|
+
- ext/.gitignore
|
75
|
+
- ext/UiaDll/UIA.Helper/AutomationProperty.cs
|
76
|
+
- ext/UiaDll/UIA.Helper/Clicker.cs
|
77
|
+
- ext/UiaDll/UIA.Helper/Element.cs
|
78
|
+
- ext/UiaDll/UIA.Helper/Extensions.cs
|
79
|
+
- ext/UiaDll/UIA.Helper/Properties/AssemblyInfo.cs
|
80
|
+
- ext/UiaDll/UIA.Helper/UIA.Helper.csproj
|
81
|
+
- ext/UiaDll/UiaDll.sln
|
82
|
+
- ext/UiaDll/UiaDll/ArrayHelper.cpp
|
83
|
+
- ext/UiaDll/UiaDll/ArrayHelper.h
|
84
|
+
- ext/UiaDll/UiaDll/AssemblyInfo.cpp
|
85
|
+
- ext/UiaDll/UiaDll/DynamicAssemblyResolver.cpp
|
86
|
+
- ext/UiaDll/UiaDll/DynamicAssemblyResolver.h
|
87
|
+
- ext/UiaDll/UiaDll/ElementMethods.cpp
|
88
|
+
- ext/UiaDll/UiaDll/ElementStructures.h
|
89
|
+
- ext/UiaDll/UiaDll/ReadMe.txt
|
90
|
+
- ext/UiaDll/UiaDll/Stdafx.cpp
|
91
|
+
- ext/UiaDll/UiaDll/Stdafx.h
|
92
|
+
- ext/UiaDll/UiaDll/StringHelper.cpp
|
93
|
+
- ext/UiaDll/UiaDll/StringHelper.h
|
94
|
+
- ext/UiaDll/UiaDll/UiaDll.cpp
|
95
|
+
- ext/UiaDll/UiaDll/UiaDll.h
|
96
|
+
- ext/UiaDll/UiaDll/UiaDll.vcxproj
|
97
|
+
- ext/UiaDll/UiaDll/UiaDll.vcxproj.filters
|
98
|
+
- ext/UiaDll/UiaDll/app.rc
|
99
|
+
- lib/uia.rb
|
100
|
+
- lib/uia/version.rb
|
101
|
+
- uia.gemspec
|
102
|
+
- ext/UiaDll/Release/UiaDll.dll
|
103
|
+
- ext/UiaDll/Release/UIA.Helper.dll
|
104
|
+
homepage: ''
|
105
|
+
licenses:
|
106
|
+
- MIT
|
107
|
+
post_install_message:
|
108
|
+
rdoc_options: []
|
109
|
+
require_paths:
|
110
|
+
- lib
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
113
|
+
requirements:
|
114
|
+
- - ! '>='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
none: false
|
119
|
+
requirements:
|
120
|
+
- - ! '>='
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
requirements: []
|
124
|
+
rubyforge_project:
|
125
|
+
rubygems_version: 1.8.24
|
126
|
+
signing_key:
|
127
|
+
specification_version: 3
|
128
|
+
summary: This wraps UIA stuff
|
129
|
+
test_files: []
|
130
|
+
has_rdoc:
|