|
1 |
| - |
2 | 1 | lib = File.expand_path("../lib", __FILE__)
|
3 | 2 | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4 | 3 | require "legitable/version"
|
5 | 4 |
|
6 | 5 | Gem::Specification.new do |spec|
|
7 |
| - spec.name = "legitable" |
8 |
| - spec.version = Legitable::VERSION |
9 |
| - spec.authors = ["Joel Helbling"] |
10 |
| - spec.email = ["[email protected]"] |
| 6 | + spec.name = "legitable" |
| 7 | + spec.version = Legitable::VERSION |
| 8 | + spec.authors = ["Joel Helbling"] |
| 9 | + spec.email = ["[email protected]"] |
11 | 10 |
|
12 |
| - spec.summary = %q{Easy plain text tables} |
13 |
| - spec.description = %q{Tables are easier to read. Legitable makes it easy to display plain text output in tabular form.} |
14 |
| - spec.homepage = "https://github.com/joelhelbling/legitable" |
15 |
| - spec.license = "MIT" |
| 11 | + spec.summary = "Easy plain text tables" |
| 12 | + spec.description = "Tables are easier to read. Legitable makes it easy to display plain text output in tabular form." |
| 13 | + spec.homepage = "https://github.com/joelhelbling/legitable" |
| 14 | + spec.license = "MIT" |
16 | 15 |
|
17 |
| - spec.files = `git ls-files -z`.split("\x0").reject do |f| |
18 |
| - f.match(%r{^(test|spec|features)/}) |
| 16 | + spec.files = `git ls-files -z`.split("\x0").reject do |f| |
| 17 | + f.match(%r{^(test|spec|features|\.vim.*|\.rspec.*)/}) |
19 | 18 | end
|
20 |
| - spec.bindir = "exe" |
21 |
| - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } |
| 19 | + spec.bindir = "exe" |
| 20 | + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } |
22 | 21 | spec.require_paths = ["lib"]
|
23 | 22 |
|
24 | 23 | spec.add_development_dependency "bundler", "~> 2.2.rc"
|
|
0 commit comments