forked from jnewland/cucumber-standalone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcucumber-selenium-standalone.gemspec
31 lines (28 loc) · 1.39 KB
/
cucumber-selenium-standalone.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
27
28
29
30
31
# -*- encoding: utf-8 -*-
require File.expand_path(File.dirname(__FILE__) + "/lib/cucumber_standalone")
Gem::Specification.new do |s|
s.name = %q{cucumber-selenium-standalone}
s.summary = %q{A basic archetype for a standalone Cucumber/Capybara/Selenium test suite}
s.description = %q{generates directory and required files for any type of project needing to test with Cucumber/Capybara/Selenium}
s.homepage = %q{http://github.com/techwhizbang/cucumber-selenium-standalone}
s.version = CucumberStandalone::VERSION
s.authors = "Nick Zalabak"
s.email = %q{[email protected]}
s.rubygems_version = %q{1.3.7}
s.date = %q{2011-07-26}
s.require_paths = ["lib"]
s.files = ["bin/cucumber-selenium-standalone", "lib/cucumber_standalone.rb",
"templates/cucumber.yml", "templates/Gemfile",
"templates/Rakefile"] + Dir.glob("templates/features/**/*")
s.has_rdoc = false
s.executables = ["cucumber-selenium-standalone"]
s.add_dependency("thor", "0.14.6")
s.add_dependency("rake", "0.9.2")
s.add_dependency('cucumber-rails', "1.0.2")
s.add_dependency("cucumber", "1.0.2")
s.add_dependency("selenium-webdriver", "0.2.2")
s.add_dependency("capybara", "1.0")
s.add_dependency("bundler", "~> 1.0.15")
s.add_dependency("nokogiri", "1.5.0")
s.add_dependency("rspec", "2.6.0")
end