-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcelerity.gemspec
26 lines (22 loc) · 1.22 KB
/
celerity.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'celerity/version'
Gem::Specification.new do |s|
s.name = %q{celerity}
s.version = Celerity::VERSION
s.authors = ["Jari Bakken", "T. Alexander Lystad", "Knut Johannes Dahle"]
s.description = "Celerity is a JRuby wrapper around HtmlUnit – a headless Java browser with JavaScript support. It provides a simple API for programmatic navigation through web applications. Celerity provides a superset of Watir's API."
s.summary = %q{Celerity is a JRuby library for easy and fast functional test automation for web applications.}
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/jarib/celerity}
s.require_paths = ["lib"]
s.rubyforge_project = %q{celerity}
s.add_development_dependency "rake", "~> 0.9.2"
s.add_development_dependency "rspec", "~> 2.0.0"
s.add_development_dependency "yard", ">= 0"
s.add_development_dependency "sinatra", "~> 1.0"
s.add_development_dependency "mongrel", ">= 0"
s.files = `git ls-files`.split("\n")
s.test_files = []
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
end