-
Notifications
You must be signed in to change notification settings - Fork 11
/
saxon-xslt.gemspec
29 lines (26 loc) · 1.35 KB
/
saxon-xslt.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__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'saxon/xslt/version'
Gem::Specification.new do |gem|
gem.name = "saxon-xslt"
gem.version = Saxon::XSLT::VERSION
gem.authors = ["Matt Patterson"]
gem.email = ["matt@reprocessed.org"]
gem.description = %q{Wraps the Saxon 9.8 HE XSLT 2.0 processor so that you can transform XSLT 2 stylesheets in JRuby. Sticks closely to the Nokogiri API}
gem.summary = %q{Saxon 9.8 HE XSLT 2.0 for JRuby with Nokogiri's API}
gem.homepage = "https://github.com/fidothe/saxon-xslt"
gem.licenses = ["MIT", "MPL-1.0"]
gem.platform = 'java'
gem.files = `git ls-files`.split($/).reject { |f| f.match(%r{^spec/fixtures/cassettes}) }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency('rake', '~> 11.3')
gem.add_development_dependency('rspec', '~> 3.0')
gem.add_development_dependency('vcr', '~> 4.0')
gem.add_development_dependency('addressable', '~> 2.4.0')
gem.add_development_dependency('webmock', '~> 2.3.2')
gem.add_development_dependency('yard', '~> 0.9.12')
gem.add_development_dependency('simplecov', '~> 0.15')
end