rb-readline 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +2 -1
- data/lib/rbreadline/version.rb +1 -1
- data/lib/readline.rb +1 -1
- data/rb-readline.gemspec +3 -3
- metadata +22 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11254ddea2920d62503f38b898462770748e2935
|
4
|
+
data.tar.gz: 3c04d3fecac964af2bca22609127ec886fdc252e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 204ae36c96008aee1c54b14f1e8dc1a62d8f5ae3e27f20cc8ed990e64e7d3260af9f8b8f2b6109b3641ec9f7818f82db10f4eb7d65d9798b840ea80b5aa609fc
|
7
|
+
data.tar.gz: 74a9a8cb96c4ffc8c9f3919ec2911fa32f09254083c12c92413f4cf5219f16c161e30e4eda9f55fc1c70aee5c3d0fa28cdcc06b43f8f2898a976a503fd9b79a9
|
data/README.rdoc
CHANGED
data/lib/rbreadline/version.rb
CHANGED
data/lib/readline.rb
CHANGED
@@ -89,7 +89,7 @@ module Readline
|
|
89
89
|
# Readline.completion_proc = proc{ |s| list.grep( /^#{Regexp.escape(s)}/) }
|
90
90
|
#
|
91
91
|
def self.completion_proc=(proc)
|
92
|
-
unless
|
92
|
+
unless proc.respond_to? :call
|
93
93
|
raise ArgumentError,"argument must respond to `call'"
|
94
94
|
end
|
95
95
|
@completion_proc = proc
|
data/rb-readline.gemspec
CHANGED
@@ -16,12 +16,12 @@ spec = Gem::Specification.new do |s|
|
|
16
16
|
s.description = "The readline library provides a pure Ruby implementation of the GNU readline C library, as well as the Readline extension that ships as part of the standard library."
|
17
17
|
|
18
18
|
# project information
|
19
|
-
s.homepage = 'http://github.com/
|
19
|
+
s.homepage = 'http://github.com/ConnorAtherton/rb-readline'
|
20
20
|
s.licenses = ['BSD']
|
21
21
|
|
22
22
|
# author and contributors
|
23
|
-
s.authors = ['Park Heesob', 'Daniel Berger', 'Luis Lavena']
|
24
|
-
s.email = ['phasis@gmail.com', 'djberg96@gmail.com', 'luislavena@gmail.com']
|
23
|
+
s.authors = ['Park Heesob', 'Daniel Berger', 'Luis Lavena', 'Connor Atherton']
|
24
|
+
s.email = ['phasis@gmail.com', 'djberg96@gmail.com', 'luislavena@gmail.com', 'c.liam.atherton@gmail.com']
|
25
25
|
|
26
26
|
# requirements
|
27
27
|
s.required_ruby_version = ">= 1.8.6"
|
metadata
CHANGED
@@ -1,43 +1,44 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rb-readline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Park Heesob
|
8
8
|
- Daniel Berger
|
9
9
|
- Luis Lavena
|
10
|
+
- Connor Atherton
|
10
11
|
autorequire:
|
11
12
|
bindir: bin
|
12
13
|
cert_chain: []
|
13
|
-
date: 2014-
|
14
|
+
date: 2014-12-29 00:00:00.000000000 Z
|
14
15
|
dependencies:
|
15
16
|
- !ruby/object:Gem::Dependency
|
16
17
|
name: rake
|
17
18
|
requirement: !ruby/object:Gem::Requirement
|
18
19
|
requirements:
|
19
|
-
- -
|
20
|
+
- - ">="
|
20
21
|
- !ruby/object:Gem::Version
|
21
22
|
version: '0'
|
22
23
|
type: :development
|
23
24
|
prerelease: false
|
24
25
|
version_requirements: !ruby/object:Gem::Requirement
|
25
26
|
requirements:
|
26
|
-
- -
|
27
|
+
- - ">="
|
27
28
|
- !ruby/object:Gem::Version
|
28
29
|
version: '0'
|
29
30
|
- !ruby/object:Gem::Dependency
|
30
31
|
name: minitest
|
31
32
|
requirement: !ruby/object:Gem::Requirement
|
32
33
|
requirements:
|
33
|
-
- - ~>
|
34
|
+
- - "~>"
|
34
35
|
- !ruby/object:Gem::Version
|
35
36
|
version: '5.2'
|
36
37
|
type: :development
|
37
38
|
prerelease: false
|
38
39
|
version_requirements: !ruby/object:Gem::Requirement
|
39
40
|
requirements:
|
40
|
-
- - ~>
|
41
|
+
- - "~>"
|
41
42
|
- !ruby/object:Gem::Version
|
42
43
|
version: '5.2'
|
43
44
|
description: The readline library provides a pure Ruby implementation of the GNU readline
|
@@ -47,6 +48,7 @@ email:
|
|
47
48
|
- phasis@gmail.com
|
48
49
|
- djberg96@gmail.com
|
49
50
|
- luislavena@gmail.com
|
51
|
+
- c.liam.atherton@gmail.com
|
50
52
|
executables: []
|
51
53
|
extensions: []
|
52
54
|
extra_rdoc_files:
|
@@ -54,52 +56,53 @@ extra_rdoc_files:
|
|
54
56
|
- LICENSE
|
55
57
|
- CHANGES
|
56
58
|
files:
|
59
|
+
- CHANGES
|
60
|
+
- LICENSE
|
61
|
+
- README.rdoc
|
62
|
+
- Rakefile
|
57
63
|
- bench/_rl_adjust_point.rb
|
58
64
|
- examples/example_readline.rb
|
59
65
|
- examples/example_readline_with_completion.rb
|
60
66
|
- examples/tinyirb.rb
|
61
67
|
- lib/rb-readline.rb
|
62
|
-
- lib/rbreadline/version.rb
|
63
68
|
- lib/rbreadline.rb
|
69
|
+
- lib/rbreadline/version.rb
|
64
70
|
- lib/readline.rb
|
71
|
+
- rb-readline.gemspec
|
72
|
+
- setup.rb
|
65
73
|
- test/support/filesystem_completion_helper.rb
|
66
74
|
- test/test_completion.rb
|
67
75
|
- test/test_filename_completion_proc.rb
|
68
76
|
- test/test_history.rb
|
69
77
|
- test/test_rbreadline.rb
|
70
78
|
- test/test_readline.rb
|
71
|
-
|
72
|
-
- LICENSE
|
73
|
-
- CHANGES
|
74
|
-
- Rakefile
|
75
|
-
- rb-readline.gemspec
|
76
|
-
- setup.rb
|
77
|
-
homepage: http://github.com/luislavena/rb-readline
|
79
|
+
homepage: http://github.com/ConnorAtherton/rb-readline
|
78
80
|
licenses:
|
79
81
|
- BSD
|
80
82
|
metadata: {}
|
81
83
|
post_install_message:
|
82
84
|
rdoc_options:
|
83
|
-
- --main
|
85
|
+
- "--main"
|
84
86
|
- README.rdoc
|
85
|
-
- --title
|
87
|
+
- "--title"
|
86
88
|
- Rb-Readline - Documentation
|
87
89
|
require_paths:
|
88
90
|
- lib
|
89
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
90
92
|
requirements:
|
91
|
-
- -
|
93
|
+
- - ">="
|
92
94
|
- !ruby/object:Gem::Version
|
93
95
|
version: 1.8.6
|
94
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
97
|
requirements:
|
96
|
-
- -
|
98
|
+
- - ">="
|
97
99
|
- !ruby/object:Gem::Version
|
98
100
|
version: 1.3.5
|
99
101
|
requirements: []
|
100
102
|
rubyforge_project:
|
101
|
-
rubygems_version: 2.
|
103
|
+
rubygems_version: 2.4.2
|
102
104
|
signing_key:
|
103
105
|
specification_version: 4
|
104
106
|
summary: Pure-Ruby Readline Implementation
|
105
107
|
test_files: []
|
108
|
+
has_rdoc:
|