-
Notifications
You must be signed in to change notification settings - Fork 12
/
frameworks-capybara.gemspec
32 lines (25 loc) · 1.11 KB
/
frameworks-capybara.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
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'version'
Gem::Specification.new do |s|
s.name = "frameworks-capybara"
s.version = FrameworksCapybara::VERSION
s.authors = ["matt robbins"]
s.email = ["[email protected]"]
s.description = "Gem to ease the pain of managing capybara driver config and provide a home for common utils and patches"
s.files = Dir.glob("{features,lib,bin,config,vendor,.bundle}/**/*") + %w(Gemfile Gemfile.lock)
s.require_paths = ["lib"]
s.rubygems_version = "2.4.2"
s.summary = "Gem to ease the pain of managing capybara driver config and provide a home for common utils and patches"
s.files = `git ls-files`.split("\n")
s.add_runtime_dependency("selenium-webdriver")
s.add_runtime_dependency("capybara")
s.add_runtime_dependency("mechanize")
s.add_runtime_dependency("capybara-mechanize")
s.add_runtime_dependency("json")
s.add_runtime_dependency("cucumber")
s.add_runtime_dependency("w3c_validators")
s.add_development_dependency("rake")
s.add_development_dependency("rspec")
end