Skip to content

Commit 78ea029

Browse files
committed
cleanup and bump version to 0.3.0
1 parent 7354f28 commit 78ea029

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

.travis.yml

-5
This file was deleted.

legitable.gemspec

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
21
lib = File.expand_path("../lib", __FILE__)
32
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
43
require "legitable/version"
54

65
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]"]
1110

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"
1615

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.*)/})
1918
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) }
2221
spec.require_paths = ["lib"]
2322

2423
spec.add_development_dependency "bundler", "~> 2.2.rc"

lib/legitable/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Legitable
2-
VERSION = "0.2.0"
2+
VERSION = "0.3.0"
33
end

0 commit comments

Comments
 (0)