Sha256: 1c178781acda349fb890fb7a362b34a503cb9af70a5d3656144e2c92e6a1c14a

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "symbiont/version"

Gem::Specification.new do |s|
  s.name        = "symbiont"
  s.version     = Symbiont::VERSION
  s.platform    = Gem::Platform::RUBY
  s.license     = "MIT"
  s.authors     = ["Jeff Nyman"]
  s.email       = ["jeffnyman@gmail.com"]
  s.homepage    = "https://github.com/jnyman/symbiont"
  s.summary     = %q{An endosymbiotic facultative library for web application testing.}
  s.description = %q{An endosymbiotic facultative library for web application testing.}

  s.required_ruby_version = '>= 1.9.2'
  s.rubyforge_project = "symbiont"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,specs,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', '>= 2.8.0'
  s.add_development_dependency 'simplecov', '>= 0.6.1'

  s.add_runtime_dependency 'watir-webdriver', '0.5.3'
  s.add_runtime_dependency 'selenium-webdriver', '2.20.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
symbiont-0.0.2 symbiont.gemspec
symbiont-0.0.1 symbiont.gemspec