-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkelp.gemspec
26 lines (23 loc) · 871 Bytes
/
kelp.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
26
Gem::Specification.new do |s|
s.name = "kelp"
s.version = "0.2.5"
s.summary = "Cucumber helper methods"
s.description = <<-EOS
Kelp is a collection of helper methods for Cucumber to ease the process of
writing step definitions. It also includes a Rails generator for generic
step definitions building upon those helpers.
EOS
s.authors = ["Eric Pierce"]
s.email = "wapcaplet88@gmail.com"
s.homepage = "http://github.com/wapcaplet/kelp"
s.platform = Gem::Platform::RUBY
s.add_dependency 'capybara', '>= 2.0'
s.add_development_dependency 'sinatra'
s.add_development_dependency 'rspec', '>= 2.2.0'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'webrat'
s.add_development_dependency 'cucumber'
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
end