Sha256: 9b7beac189b9c2a47eed1745b8c33862f46048c9b8de40d1dbaa9a9c72b51a77
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'compare-xml/version' Gem::Specification.new do |spec| spec.name = 'compare-xml' spec.version = CompareXML::VERSION spec.authors = ['Vadim Kononov'] spec.email = ['vadim@poetic.com'] spec.summary = %q{A customizable tool that compares two instances of Nokogiri::XML::Node for equality or equivalency.} spec.description = %q{CompareXML is a fast, lightweight and feature-rich tool that will solve your XML/HTML comparison or diffing needs. its purpose is to compare two instances of Nokogiri::XML::Node or Nokogiri::XML::NodeSet for equality or equivalency.} spec.homepage = 'https://github.com/vkononov/compare-xml-xml' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.11' spec.add_development_dependency 'rake', '~> 11.1' spec.add_runtime_dependency 'nokogiri', '~> 1.6' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
compare-xml-0.5.1 | compare-xml.gemspec |