Sha256: f1463aeaef3dd40f81d69a946db907a55bc3d5bb8c558c0ce7557b8ce7f21ff3

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'saxon/version'

Gem::Specification.new do |spec|
  spec.name          = 'saxon'
  spec.version       = Saxon::VERSION
  spec.authors       = ['Matt Patterson']
  spec.email         = ['matt@werkstatt.io']

  spec.description   = %q{Deprecated version of the Saxon XML and XSLT library wrapper.

The gem has been renamed saxon-rb. This gem depends on that gem. To continue to see updates, please replace saxon with saxon-rb in your Gemfiles.

This gem has a hard dependency on version #{Saxon::VERSION} of saxon-rb, but will never be updated.
}
  spec.summary       = %q{Saxon 9.9 for JRuby, with an idiomatic Ruby API, now renamed to saxon-rb}
  spec.homepage      = "https://github.com/fidothe/saxon-rb"
  spec.license       = 'MIT'
  spec.platform      = 'java'
  spec.post_install_message = "saxon has been renamed to saxon-rb. Please rename in your Gemfile or gemspec (that's all you need to do). This gem won't get any new updates."

  spec.files         = %w{LICENSE.txt saxon.gemspec lib}
  spec.bindir        = 'exe'
  spec.executables   = []
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'saxon-rb', Saxon::VERSION
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
saxon-0.4.0-java saxon.gemspec
saxon-rb-0.4.0-java saxon.gemspec