compare-xml.gemspec in compare-xml-0.62 vs compare-xml.gemspec in compare-xml-0.65

- old
+ new

@@ -1,25 +1,22 @@ -# 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 = 'http://vkononov.github.io/compare-xml' + spec.summary = 'A customizable tool that compares two instances of Nokogiri::XML::Node for equality or equivalency.' + spec.description = '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' 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' + spec.add_runtime_dependency 'nokogiri', '~> 1.8' end