rb-readline 0.5.1 → 0.5.2

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: 22a7b0650c257f0c07ce2b14614fba15a32ec32d
4
- data.tar.gz: 0c7d5218c36eba3fd676f598353608f03986546d
3
+ metadata.gz: 11254ddea2920d62503f38b898462770748e2935
4
+ data.tar.gz: 3c04d3fecac964af2bca22609127ec886fdc252e
5
5
  SHA512:
6
- metadata.gz: 95285288724524d3ecf7becb97180f02c624d8b3e04f4db151a5a40a72a04c8518139a40894bc3d413fd952dd3a9558a1c280b4044d234f654cf502e0b9a25bf
7
- data.tar.gz: f3dbc801aadabf874b0abbaf35f76b5fc825b4e256e6eebddda2ea7fc6b146fe349c53a5e2ef4c7dc446719b7f28555fc139cf77978ca347b6b93f7fbe3d2414
6
+ metadata.gz: 204ae36c96008aee1c54b14f1e8dc1a62d8f5ae3e27f20cc8ed990e64e7d3260af9f8b8f2b6109b3641ec9f7818f82db10f4eb7d65d9798b840ea80b5aa609fc
7
+ data.tar.gz: 74a9a8cb96c4ffc8c9f3919ec2911fa32f09254083c12c92413f4cf5219f16c161e30e4eda9f55fc1c70aee5c3d0fa28cdcc06b43f8f2898a976a503fd9b79a9
@@ -66,5 +66,6 @@ compatibility mode.
66
66
 
67
67
  * Park Heesob (C translation, code donated as part of bounty)
68
68
  * Daniel Berger (Documentation and testing)
69
- * Luis Lavena (Maintainer)
69
+ * Luis Lavena
70
70
  * Mark Somerville (Maintainer)
71
+ * Connor Atherton (Maintainer)
@@ -1,3 +1,3 @@
1
1
  module RbReadline
2
- RB_READLINE_VERSION = "0.5.1"
2
+ RB_READLINE_VERSION = "0.5.2"
3
3
  end
@@ -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 defined? proc.call
92
+ unless proc.respond_to? :call
93
93
  raise ArgumentError,"argument must respond to `call'"
94
94
  end
95
95
  @completion_proc = proc
@@ -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/luislavena/rb-readline'
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.1
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-01-08 00:00:00.000000000 Z
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
- - README.rdoc
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.0.14
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: