File: docdiff.gemspec

package info (click to toggle)
docdiff 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 960 kB
  • sloc: ruby: 13,872; makefile: 92; lisp: 33; sh: 26
file content (23 lines) | stat: -rw-r--r-- 965 bytes parent folder | download
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