-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-page.gemspec
23 lines (20 loc) · 1.06 KB
/
test-page.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/test/page/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jarmo Pertman"]
gem.email = ["[email protected]"]
gem.description = %q{test-page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
gem.summary = %q{test-page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
gem.homepage = "https://github.com/jarmo/test-page"
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.name = "test-page"
gem.require_paths = ["lib"]
gem.version = Test::Page::VERSION
gem.add_development_dependency "rspec", "~>3.0"
gem.add_development_dependency "simplecov"
gem.add_development_dependency "yard"
gem.add_development_dependency "redcarpet"
gem.add_development_dependency "rake"
end