Sha256: 1329e181448b9b69306c77b71f9dd7f92000917af4c031f2d4dd71f7ac930306
Contents?: true
Size: 1.64 KB
Versions: 12
Compression:
Stored size: 1.64 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'webdrone/version' Gem::Specification.new do |spec| spec.name = "webdrone" spec.version = Webdrone::VERSION spec.authors = ["Aldrin Martoq"] spec.email = ["a@a0.cl"] spec.summary = %q{A simple selenium webdriver wrapper, ruby version.} spec.description = %q{See webpage for more info.} spec.homepage = "http://github.com/a0/a0-webdrone-ruby" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or # delete this section to allow pushing this gem to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_development_dependency "ci_reporter_rspec" spec.add_development_dependency "parallel_tests" spec.add_runtime_dependency "os" spec.add_runtime_dependency "selenium-webdriver" spec.add_runtime_dependency "xpath" spec.add_runtime_dependency "rubyXL" spec.add_runtime_dependency "binding_of_caller" spec.add_runtime_dependency "pry" spec.add_runtime_dependency "highline" end
Version data entries
12 entries across 12 versions & 1 rubygems