elastic_tabstops 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1ff69b38a4101a8accf5a76413322ba1cbebeaad554a7c4ab6d29750b581005
4
- data.tar.gz: a76ec437baf9959670a4998bc2dddd56283937a36c9074ab7e8c5ac27e8ba526
3
+ metadata.gz: 137f1f3ae7045b111582ac9be005129827680181a370c27ff08bff969d75059e
4
+ data.tar.gz: dce78c9c1f4e490240c09b2c6cc694779086f0809ec3f2d74c723435747cc312
5
5
  SHA512:
6
- metadata.gz: 79a97edad288051b62d298dff9b2b09f701d027df43a33808a7b7384ef32f2331e2fdb591b4f0b9582e1bd1189795125698dc00bbfda55f3d78e623b7fbddb55
7
- data.tar.gz: 48958bdb999a30fadf523a9bec98f87e2ea0ba51082be1fa248277411f8abe6f566cac48d4b35bee67b1a5ba9290f64f638360cedff68ccbcecbef5b355d5213
6
+ metadata.gz: 1a282d910b97536c7e262cdd5da8dde8cfbb94ddf9a77a7df4157ceb7039b5b3ad3d5cb3bf04a0f7f07319007c33fb6ec30e3ba4134ef6be8ff14137cbc9a5c1
7
+ data.tar.gz: 53f598ee326fb05036f6200e84838632520e1c632f852cea1041f1c7a5e8c4dbff343a8a5cfd5591ab35032f9592dc12ddaf09b7d3051d0e3c1961f611778a98
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- elastic_tabstops (0.1.0)
4
+ elastic_tabstops (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -27,11 +27,11 @@ PLATFORMS
27
27
  DEPENDENCIES
28
28
  bundler (~> 2.0)
29
29
  elastic_tabstops!
30
- ffaker (~> 2.11.0)
30
+ ffaker (~> 2.11, >= 2.11.0)
31
31
  minitest (~> 5.0)
32
32
  minitest-rg (~> 5.0)
33
33
  pry (~> 0.12.2)
34
- pry-byebug (~> 3.7.0)
34
+ pry-byebug (~> 3.7, >= 3.7.0)
35
35
  rake (~> 10.0)
36
36
 
37
37
  BUNDLED WITH
@@ -10,7 +10,10 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["thom at boyers.org"]
11
11
 
12
12
  spec.summary = %q{An output stream that makes columnar output easy.}
13
- spec.description = %q{This is an implementation of [elastic tabstops](http://nickgravgaard.com/elastic-tabstops/) in an output-stream filter.
13
+ spec.description = %q{Generate monospaced output in neatly-aligned columns.
14
+
15
+ This gem implements the Elastic Tabstops proposal
16
+ (see http://nickgravgaard.com/elastic-tabstops/).
14
17
 
15
18
  Data written to an elastic tabstop output stream is reformatted to align
16
19
  columns. Columns are made up of tab-terminated cells in adjacent lines of output.
@@ -1,3 +1,3 @@
1
1
  module ElasticTabstops
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic_tabstops
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas A. Boyer
@@ -121,7 +121,10 @@ dependencies:
121
121
  - !ruby/object:Gem::Version
122
122
  version: 2.11.0
123
123
  description: |
124
- This is an implementation of [elastic tabstops](http://nickgravgaard.com/elastic-tabstops/) in an output-stream filter.
124
+ Generate monospaced output in neatly-aligned columns.
125
+
126
+ This gem implements the Elastic Tabstops proposal
127
+ (see http://nickgravgaard.com/elastic-tabstops/).
125
128
 
126
129
  Data written to an elastic tabstop output stream is reformatted to align
127
130
  columns. Columns are made up of tab-terminated cells in adjacent lines of output.