forked from playup/diff_matcher
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdiff_matcher.gemspec
27 lines (23 loc) · 1 KB
/
diff_matcher.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
# -*- 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 = "[email protected]"
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