mini_readline 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mini_readline/version.rb +1 -1
- data/mini_readline.gemspec +11 -5
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c70c45ae03551c8cb61ccb5084d8693395d549e
|
4
|
+
data.tar.gz: d536c61b39cd0271ec8a645962e269ca964a940e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82d827399cbd449703f1114982b56a8355fc3c0d6ad88d5da03c9b5f9e4e51621bfe5b149ea273ca3cf24e44b734c7ec778451707008fb4c65e2875979701fe8
|
7
|
+
data.tar.gz: bdd758d0fd384b8a4afb7c58ccc0f9570ab1e8f74b3dc41864070a6882992dc1bc0fb29ac329ddcfe7efaa262006ec14c2ea7f86b4a75c3681a8a0d46dc6e747
|
data/mini_readline.gemspec
CHANGED
@@ -10,11 +10,17 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["peter.c.camilleri@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = "A simplified replacement for readline."
|
13
|
-
spec.description =
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
spec.description = %{A gem, for console command entry with line edit and
|
14
|
+
history, inspired by the standard readline gem. Its
|
15
|
+
creation was motivated by the bugs and eternal pull
|
16
|
+
requests of that same gem. Further frustration was
|
17
|
+
caused by the fact the the system readline gem seems
|
18
|
+
to use a special load path that bypasses the normal
|
19
|
+
gem protocols. Also included are four sample
|
20
|
+
auto-complete agents and the irbm utility, which is
|
21
|
+
irb + mini_readline and not an Intermediate Range
|
22
|
+
Ballistic Missile.
|
23
|
+
}.gsub(/\s+/, ' ').strip
|
18
24
|
|
19
25
|
spec.homepage = "http://teuthida-technologies.com/"
|
20
26
|
spec.license = "MIT"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini_readline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Camilleri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -66,9 +66,12 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '10.0'
|
69
|
-
description: A gem for console command entry with line edit and history
|
70
|
-
|
71
|
-
|
69
|
+
description: A gem, for console command entry with line edit and history, inspired
|
70
|
+
by the standard readline gem. Its creation was motivated by the bugs and eternal
|
71
|
+
pull requests of that same gem. Further frustration was caused by the fact the the
|
72
|
+
system readline gem seems to use a special load path that bypasses the normal gem
|
73
|
+
protocols. Also included are four sample auto-complete agents and the irbm utility,
|
74
|
+
which is irb + mini_readline and not an Intermediate Range Ballistic Missile.
|
72
75
|
email:
|
73
76
|
- peter.c.camilleri@gmail.com
|
74
77
|
executables:
|