-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmohawk.gemspec
36 lines (32 loc) · 1.67 KB
/
mohawk.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
32
33
34
35
36
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mohawk/version'
Gem::Specification.new do |gem|
gem.name = "mohawk"
gem.version = Mohawk::VERSION
gem.authors = ["Levi Wilson"]
gem.email = ["[email protected]"]
gem.description = %q{Mohawk is a page-object style driver that makes it easy to automate windows applications. It allows you to create a very flexible, clean and natural DSL around whatever windows application that you are trying to automate using the RAutomation gem as the underlying driver.}
gem.summary = %q{Provides a page-object style driver for automating Windows applications}
gem.homepage = "http://github.com/leviwilson/mohawk"
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'uia', '~> 1.0'
gem.add_dependency 'require_all', '~> 3.0'
gem.add_dependency 'page_navigation', '>= 0.7'
gem.add_dependency 'childprocess', '~> 0.5'
gem.add_development_dependency 'cucumber'
gem.add_development_dependency 'rspec', '3.5.0'
gem.add_development_dependency 'rspec-given'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'childprocess'
gem.add_development_dependency 'rb-fsevent', '~> 0.9.1'
gem.add_development_dependency 'guard'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'terminal-notifier-guard'
gem.add_development_dependency 'json', '~> 2.1'
end