Sha256: b6840a47c1ec157c48ec0816e59762dec190985c1bb5be7dd422adf0a367456d
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "webrat" s.version = "0.7.3" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bryan Helmkamp"] s.date = "2011-01-01" s.description = "Webrat lets you quickly write expressive and robust acceptance tests\nfor a Ruby web application. It supports simulating a browser inside\na Ruby process to avoid the performance hit and browser dependency of\nSelenium or Watir, but the same API can also be used to drive real\nSelenium tests when necessary (eg. for testing AJAX interactions).\nMost Ruby web frameworks and testing frameworks are supported." s.email = "bryan@brynary.com" s.extra_rdoc_files = ["README.rdoc", "MIT-LICENSE.txt", "History.txt"] s.files = ["README.rdoc", "MIT-LICENSE.txt", "History.txt"] s.homepage = "http://github.com/brynary/webrat" s.require_paths = ["lib"] s.rubyforge_project = "webrat" s.rubygems_version = "1.8.16" s.summary = "Ruby Acceptance Testing for Web applications" if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q<nokogiri>, [">= 1.2.0"]) s.add_runtime_dependency(%q<rack>, [">= 1.0"]) s.add_runtime_dependency(%q<rack-test>, [">= 0.5.3"]) else s.add_dependency(%q<nokogiri>, [">= 1.2.0"]) s.add_dependency(%q<rack>, [">= 1.0"]) s.add_dependency(%q<rack-test>, [">= 0.5.3"]) end else s.add_dependency(%q<nokogiri>, [">= 1.2.0"]) s.add_dependency(%q<rack>, [">= 1.0"]) s.add_dependency(%q<rack-test>, [">= 0.5.3"]) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
radiant-1.0.0 | ruby-debug/ruby/1.8/specifications/webrat-0.7.3.gemspec |