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 +4 -4
- data/README.md +1 -1
- data/everyday-cli-utils.gemspec +8 -7
- data/lib/everyday-cli-utils/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e52596df8f25d3ba81101dfbccbc62f9c309ec5d
|
|
4
|
+
data.tar.gz: 7a15ffae5b9f397630a0194bc039f83699a5d451
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b72147d548a12f520d1e92601b905b5fb9e84e48e6c32c2e7d92de176a9f8118cd754b73a1c7fec680c6e612383f79247af0b22db5da4be85226eb0560f5061a
|
|
7
|
+
data.tar.gz: 13b000a6534469398170a20526a2d7325cbd822da5e8ff8cb253897984f410267991c728b2605385d5c4b2053e2d8e9a9ef512d802ea4556d498c660f52440aa
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://codeclimate.com/github/henderea/everyday-cli-utils)
|
|
7
7
|
[](https://coveralls.io/r/henderea/everyday-cli-utils?branch=master)
|
|
8
8
|
|
|
9
|
-
A
|
|
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.
|
data/everyday-cli-utils.gemspec
CHANGED
|
@@ -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
|
|
8
|
-
spec.version
|
|
9
|
-
spec.authors
|
|
10
|
-
spec.email
|
|
11
|
-
spec.summary
|
|
12
|
-
spec.
|
|
13
|
-
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 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) }
|
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.
|
|
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
|