-
Notifications
You must be signed in to change notification settings - Fork 1
/
dmc_kanye.gemspec
24 lines (20 loc) · 1.06 KB
/
dmc_kanye.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dmc_kanye/version'
Gem::Specification.new do |spec|
spec.name = "dmc_kanye"
spec.version = DmcKanye::VERSION
spec.authors = ["Wyatt Greene", "Parker Morse"]
spec.licenses = ['MIT']
spec.homepage = 'https://github.com/dmcouncil/dmc_kanye'
spec.summary = %q{Imma let your AJAX finish, but these are the best feature tests of ALL TIME.}
spec.description = %q{Kanye improves Capybara's synchronization algorithm by letting the browser finish before the test keeps going. By doing this, Kanye also helps you tailor the swiftness of your feature specs.}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "capybara"
spec.add_dependency "poltergeist"
spec.add_development_dependency "rake"
end