everyday-cli-utils 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 199206bbe82dfcfc462d6df301b006f4d2677399
4
- data.tar.gz: 1f8214a8ba51c3b20b51da8b98459a69ca13ca78
3
+ metadata.gz: e52596df8f25d3ba81101dfbccbc62f9c309ec5d
4
+ data.tar.gz: 7a15ffae5b9f397630a0194bc039f83699a5d451
5
5
  SHA512:
6
- metadata.gz: 1a8ddc46de89d5b790c6ff6d0936b07958000a54f5c5eca3d306323b8c6f6fa35512718698f3351884a3f4178367f7afaee6dfcf24dde5c488eb5e8625125faa
7
- data.tar.gz: 1e23c0a6cc0fa314ac6fc025b3362d313d3a8441275c144acb6f3ea68bac3d7221c5253d30af7107a8013ab6dc2e35fa006cf0f3a64f0b63c53f1351d238cfa0
6
+ metadata.gz: b72147d548a12f520d1e92601b905b5fb9e84e48e6c32c2e7d92de176a9f8118cd754b73a1c7fec680c6e612383f79247af0b22db5da4be85226eb0560f5061a
7
+ data.tar.gz: 13b000a6534469398170a20526a2d7325cbd822da5e8ff8cb253897984f410267991c728b2605385d5c4b2053e2d8e9a9ef512d802ea4556d498c660f52440aa
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![Code Climate](https://codeclimate.com/github/henderea/everyday-cli-utils.png)](https://codeclimate.com/github/henderea/everyday-cli-utils)
7
7
  [![Coverage Status](https://coveralls.io/repos/henderea/everyday-cli-utils/badge.png?branch=master)](https://coveralls.io/r/henderea/everyday-cli-utils?branch=master)
8
8
 
9
- A set of CLI and general utilities.
9
+ A few CLI and general utilities. Includes a numbered-menu select loop utility, a ANSI formatting escape code handler, a text-based histogram maker, k-means and n-means (k-means with minimum optimal k) calculators, various collection utility methods, a Curses wrapper with up/down scrolling and more handled easily, and a utility for using OptionParser with less code.
10
10
 
11
11
  ## Issue Tracking
12
12
  Please use <https://everydayprogramminggenius.atlassian.net/browse/ECU> for issue tracking.
@@ -4,13 +4,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'everyday-cli-utils/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = 'everyday-cli-utils'
8
- spec.version = EverydayCliUtils::VERSION
9
- spec.authors = ['Eric Henderson']
10
- spec.email = ['henderea@gmail.com']
11
- spec.summary = %q{A few CLI utils}
12
- spec.homepage = 'https://github.com/henderea/everyday-cli-utils'
13
- spec.license = 'MIT'
7
+ spec.name = 'everyday-cli-utils'
8
+ spec.version = EverydayCliUtils::VERSION
9
+ spec.authors = ['Eric Henderson']
10
+ spec.email = ['henderea@gmail.com']
11
+ spec.summary = %q{A few CLI and general utils}
12
+ spec.description = %q{A few CLI and general utilities. Includes a numbered-menu select loop utility, a ANSI formatting escape code handler, a text-based histogram maker, k-means and n-means (k-means with minimum optimal k) calculators, various collection utility methods, a Curses wrapper with up/down scrolling and more handled easily, and a utility for using OptionParser with less code.}
13
+ spec.homepage = 'https://github.com/henderea/everyday-cli-utils'
14
+ spec.license = 'MIT'
14
15
 
15
16
  spec.files = `git ls-files -z`.split("\x0")
16
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
@@ -1,3 +1,3 @@
1
1
  module EverydayCliUtils
2
- VERSION = '0.5.0'
2
+ VERSION = '0.5.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: everyday-cli-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Henderson
@@ -94,7 +94,11 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description:
97
+ description: A few CLI and general utilities. Includes a numbered-menu select loop
98
+ utility, a ANSI formatting escape code handler, a text-based histogram maker, k-means
99
+ and n-means (k-means with minimum optimal k) calculators, various collection utility
100
+ methods, a Curses wrapper with up/down scrolling and more handled easily, and a
101
+ utility for using OptionParser with less code.
98
102
  email:
99
103
  - henderea@gmail.com
100
104
  executables: []
@@ -152,7 +156,7 @@ rubyforge_project:
152
156
  rubygems_version: 2.2.0
153
157
  signing_key:
154
158
  specification_version: 4
155
- summary: A few CLI utils
159
+ summary: A few CLI and general utils
156
160
  test_files:
157
161
  - spec/everyday-cli-utils/format_spec.rb
158
162
  - spec/everyday-cli-utils/kmeans_spec.rb