-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocdiff.gemspec
More file actions
27 lines (24 loc) · 935 Bytes
/
Copy pathdocdiff.gemspec
File metadata and controls
27 lines (24 loc) · 935 Bytes
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 -*-
$LOAD_PATH.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@icloud.com"]
s.homepage = "https://github.com/hisashim/docdiff"
s.summary = "Word-by-word diff"
s.description = <<~EOS.chomp
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 tty, HTML, Manued,
or user-defined markup.
EOS
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = ">= 3.0"
s.add_development_dependency "test-unit", "~> 3"
end