forked from teamcapybara/xpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xpath.gemspec
29 lines (22 loc) · 861 Bytes
/
xpath.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('lib', File.dirname(__FILE__))
$:.unshift lib unless $:.include?(lib)
require 'xpath/version'
Gem::Specification.new do |s|
s.name = "xpath"
s.rubyforge_project = "xpath"
s.version = XPath::VERSION
s.authors = ["Jonas Nicklas"]
s.email = ["jonas.nicklas@gmail.com"]
s.description = "XPath is a Ruby DSL for generating XPath expressions"
s.files = Dir.glob("{lib,spec}/**/*") + %w(README.rdoc)
s.extra_rdoc_files = ["README.rdoc"]
s.homepage = "http://github.com/jnicklas/xpath"
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = "1.3.6"
s.summary = "Generate XPath expressions from Ruby"
s.add_dependency("nokogiri", ["~> 1.3"])
s.add_development_dependency("rspec", ["~> 2.0"])
s.add_development_dependency("yard", [">= 0.5.8"])
end