Sha256: b140b572c9735bd3068285bdb96914f979342af9afddfc90c3ac9c790f5a1357

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "diff_matcher/version"

Gem::Specification.new do |s|

  s.name          = "diff_matcher"
  s.version       = DiffMatcher::VERSION.dup
  s.platform      = Gem::Platform::RUBY
  s.authors       = ["locochris"]
  s.email         = "chris@locomote.com.au"
  s.homepage      = "http://github.com/diff-matcher/diff_matcher"
  s.licenses      = %w{ BSD MIT }

  s.summary       = %q{Generates a diff by matching against user-defined matchers written in ruby.}
  s.description   = <<EOF
DiffMatcher matches input data (eg. from a JSON API) against values,
ranges, classes, regexes, procs, custom matchers and/or easily composed,
nested combinations thereof to produce an easy to read diff string.
EOF

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.require_paths = ["lib"]
  s.bindir        = "exe"
  s.executables   = s.files.grep(%r{^#{s.bindir}/}) { |f| File.basename(f) }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
diff_matcher-2.9.0 diff_matcher.gemspec
diff_matcher-2.8.1 diff_matcher.gemspec
diff_matcher-2.8.0 diff_matcher.gemspec