Sha256: d3e4afa68ef07a1f25e1259d6d2f6a994be02d2c0162185870d8a251bd3ad1a1

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

# -*- encoding: utf-8 -*-

root = File.expand_path(File.dirname(__FILE__))
if root != Dir.pwd
  raise "cwd must be #{root} when reading gemspec"
end

Gem::Specification.new do |s|
  s.name    = "selenium-webdriver"
  s.version = "2.44.0.dev"

  s.authors     = ["Jari Bakken"]
  s.email       = "jari.bakken@gmail.com"
  s.description = "WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application."
  s.summary     = "The next generation developer focused tool for automated testing of webapps"
  s.homepage    = "http://selenium.googlecode.com"
  s.licenses    = ["Apache"]

  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
  s.required_ruby_version     = Gem::Requirement.new(">= 1.9.2")

  s.files         = Dir[root + '/**/*'].reject { |e| e =~ /ruby\.iml|build\.desc/ }.map { |e| e.sub(root + '/', '') }
  s.require_paths = ["lib"]

  s.add_runtime_dependency "multi_json", ["~> 1.0"]
  s.add_runtime_dependency "rubyzip", ["~> 1.0"]
  s.add_runtime_dependency "childprocess", ["~> 0.5"]
  s.add_runtime_dependency "websocket", ["~> 1.0"]

  s.add_development_dependency "rspec", ["~> 2.99.0"]
  s.add_development_dependency "rack", ["~> 1.0"]
  s.add_development_dependency "ci_reporter", ["~> 1.6", ">= 1.6.2"]
  s.add_development_dependency "webmock", ["~> 1.7", ">= 1.7.5"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
selenium-webdriver-2.44.0.dev selenium-webdriver.gemspec