-
Notifications
You must be signed in to change notification settings - Fork 35
/
chemistrykit.gemspec
34 lines (28 loc) · 1.33 KB
/
chemistrykit.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chemistrykit/version'
Gem::Specification.new do |s|
s.name = "chemistrykit"
s.version = ChemistryKit::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Dave Haeffner", "Jason Wieringa"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/arrgyle/chemistrykit"
s.summary = "Simple and opinionated web testing framework for Selenium that follows convention over configuration -- borrowed from Saunter, built in Ruby"
s.description = File.read(File.join(File.dirname(__FILE__), 'README.md'))
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(scripts|spec|features)/})
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = '>=1.9'
s.add_dependency "thor", "~> 0.16.0"
s.add_dependency "rspec", "~> 2.12.0"
s.add_dependency "selenium-webdriver", "~> 2.29.0"
s.add_dependency "ci_reporter", "~> 1.8.3"
s.add_dependency "rest-client", "~> 1.6.7"
s.add_development_dependency "rspec", "~> 2.12.0"
s.add_development_dependency "rake", "~> 10.0.3"
s.extensions = 'ext/mkrf_conf.rb'
end