persistent_selenium/persistent_selenium.gemspec

20 lines
850 B
Ruby
Raw Normal View History

2012-11-26 16:36:43 +00:00
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/persistent_selenium/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["John Bintz"]
gem.email = ["john@coswellproductions.com"]
2012-11-26 19:11:53 +00:00
gem.description = %q{Keep your Selenium browser open while you use Capybara to talk to it. Save seconds and sanity.}
gem.summary = %q{Keep your Selenium browser open while you use Capybara to talk to it. Save seconds and sanity.}
2012-11-26 16:36:43 +00:00
gem.homepage = ""
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 = "persistent_selenium"
gem.require_paths = ["lib"]
gem.version = PersistentSelenium::VERSION
2013-04-09 15:37:14 +00:00
gem.add_dependency 'selenium-webdriver'
2012-11-26 16:36:43 +00:00
end