-
Notifications
You must be signed in to change notification settings - Fork 9
/
docdiff.gemspec
23 lines (21 loc) · 965 Bytes
/
docdiff.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "docdiff/version"
Gem::Specification.new do |s|
s.name = "docdiff"
s.version = Docdiff::VERSION
s.license = "BSD-3-Clause"
s.authors = ["Hisashi Morita"]
s.email = ["hisashim at workbook.org"]
s.homepage = "https://github.com/hisashim/docdiff"
s.summary = %q{Word-by-word diff}
s.description = %q{DocDiff compares two text files and shows the
difference. It can compare files word by word,
character by character, or line by line. It has
several output formats such as HTML, tty, Manued,
or user-defined markup.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end