Sha256: be4010d60983aa0e5caa7e080aabfbcb5ab90d2c81732acee63acb9e5e5cb90b
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'watigiri' spec.version = '0.6.2' spec.authors = ['Titus Fortner'] spec.email = ['titusfortner@gmail.com'] spec.summary = 'Nokogiri locator engine for Watir' spec.description = <<~DESCRIPTION_MESSAGE By default Watir locates elements with Selenium; this gem will replace Selenium calls with Nokogiri calls where designated. DESCRIPTION_MESSAGE spec.homepage = 'http://github.com/titusfortner/watigiri' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.15' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'webdrivers', '~> 3.3', '>= 3.3.3' spec.add_runtime_dependency 'nokogiri' spec.add_runtime_dependency 'watir', '~> 6.15' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watigiri-0.6.2 | watigiri.gemspec |