forked from kucaahbe/rspec-html-matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrspec-html-matchers.gemspec
38 lines (32 loc) · 1.47 KB
/
rspec-html-matchers.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
33
34
35
36
37
38
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rspec-html-matchers/version'
Gem::Specification.new do |s|
s.name = 'rspec-html-matchers'
s.version = RSpecHtmlMatchers::Version::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['kucaahbe']
s.email = ['[email protected]', '[email protected]']
s.license = 'MIT'
s.homepage = 'http://github.com/kucaahbe/rspec-html-matchers'
s.summary = %q{Nokogiri based 'have_tag' and 'with_tag' matchers for rspec 3}
s.description = <<DESC
#{s.summary}. Does not depend on assert_select matcher, provides useful error messages.
DESC
s.files = Dir['lib/**/*.rb']
s.test_files = Dir['{spec,features}/**/*.{rb,feature}']
s.require_path = 'lib'
s.extra_rdoc_files = ['README.md','CHANGELOG.md']
s.required_ruby_version = '>= 1.8.7'
s.add_runtime_dependency 'rspec', '>= 3.0.0.a', '< 4'
s.add_runtime_dependency 'nokogiri', '~> 1'
s.add_development_dependency 'simplecov', '~> 0'
s.add_development_dependency 'cucumber', '~> 1'
s.add_development_dependency 'capybara', '~> 2'
s.add_development_dependency 'selenium-webdriver', '~> 2'
s.add_development_dependency 'sinatra', '~> 1'
s.add_development_dependency 'rake', '~> 10'
s.add_development_dependency 'travis-lint', '~> 1'
s.add_development_dependency 'yard'
end