forked from teamcapybara/xpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxpath.gemspec
More file actions
28 lines (22 loc) · 866 Bytes
/
xpath.gemspec
File metadata and controls
28 lines (22 loc) · 866 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __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_development_dependency("rspec", [">= 1.2.9"])
s.add_development_dependency("nokogiri", [">= 1.3.3"])
s.add_development_dependency("yard", [">= 0.5.8"])
end