forked from jarmo/RAutomation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrautomation.gemspec
32 lines (28 loc) · 1.19 KB
/
rautomation.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{rautomation}
s.version = File.read("VERSION").strip
s.authors = [%q{Jarmo Pertman}]
s.email = %q{[email protected]}
s.description = %q{RAutomation is a small and easy to use library for helping out to automate windows and their controls
for automated testing.
RAutomation provides:
* Easy to use and user-friendly API (inspired by Watir http://www.watir.com)
* Cross-platform compatibility
* Easy extensibility - with small scripting effort it's possible to add support for not yet
supported platforms or technologies}
s.homepage = %q{http://github.com/jarmo/RAutomation}
s.summary = %q{Automate windows and their controls through user-friendly API with Ruby}
ext_binaries = [
"ext/IAccessibleDLL/Release/IAccessibleDLL.dll",
"ext/UiaDll/Release/UiaDll.dll",
"ext/WindowsForms/Release/WindowsForms.exe"
]
s.files = `git ls-files`.split("\n") + ext_binaries
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency("ffi")
s.add_development_dependency("rspec", "~>2.3")
s.add_development_dependency("rake")
s.add_development_dependency("yard")
end