From 3cdf378dd7c14840ef625e39a885dcdb13157ad2 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Wed, 12 Aug 2009 12:22:00 -0400 Subject: [PATCH] Add description to gemspec --- Rakefile | 9 ++++++++- webrat.gemspec | 6 ++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 4a6a1742..25f0bf4b 100644 --- a/Rakefile +++ b/Rakefile @@ -7,7 +7,14 @@ begin s.email = "bryan" + "@" + "brynary.com" s.homepage = "http://github.com/brynary/webrat" s.summary = "Ruby Acceptance Testing for Web applications" - # s.description = "TODO" + s.description = <<-EOS.strip +Webrat lets you quickly write expressive and robust acceptance tests +for a Ruby web application. It supports simulating a browser inside +a Ruby process to avoid the performance hit and browser dependency of +Selenium or Watir, but the same API can also be used to drive real +Selenium tests when necessary (eg. for testing AJAX interactions). +Most Ruby web frameworks and testing frameworks are supported. + EOS s.rubyforge_project = "webrat" s.extra_rdoc_files = %w[README.rdoc MIT-LICENSE.txt History.txt] diff --git a/webrat.gemspec b/webrat.gemspec index b32da12f..b7a52872 100644 --- a/webrat.gemspec +++ b/webrat.gemspec @@ -10,6 +10,12 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bryan Helmkamp"] s.date = %q{2009-08-12} + s.description = %q{Webrat lets you quickly write expressive and robust acceptance tests +for a Ruby web application. It supports simulating a browser inside +a Ruby process to avoid the performance hit and browser dependency of +Selenium or Watir, but the same API can also be used to drive real +Selenium tests when necessary (eg. for testing AJAX interactions). +Most Ruby web frameworks and testing frameworks are supported.} s.email = %q{bryan@brynary.com} s.extra_rdoc_files = [ "History.txt",