Sha256: e541ccd72b5607f964ce29d0f8d0dfeab869ff839a51758ec00e3cab647a38f4
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "geckodriver/helper/version" Gem::Specification.new do |s| s.name = "geckodriver-helper" s.version = Geckodriver::Helper::VERSION s.authors = ["Devico Solutions"] s.email = ["info@devico.io"] s.homepage = "https://github.com/DevicoSolutions/geckodriver-helper" s.summary = "Easy installation and use of geckodriver." s.description = "Easy installation and use of geckodriver, that provides the HTTP API described by the WebDriver protocol to communicate with Gecko browsers, such as Firefox." s.licenses = ["MIT"] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency "rspec", "~> 3.0" s.add_development_dependency "rake", "~> 10.0" s.add_runtime_dependency "archive-zip", "~> 0.7.0" s.add_runtime_dependency "faraday", "~> 0.9.2" s.add_runtime_dependency "faraday_middleware", "~> 0.10.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
geckodriver-helper-0.0.2 | geckodriver-helper.gemspec |
geckodriver-helper-0.0.1 | geckodriver-helper.gemspec |