binding.repl 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8c8ee86e2adcf420c60b05111ce45b43a00343b9
4
- data.tar.gz: 117c6da32749481c1cd5436b5f5c43100904c2c7
3
+ metadata.gz: 881260583be0c5997a75febf99efbf065f60a529
4
+ data.tar.gz: 986efe28b8769dd1ffeac275eba4498d91450580
5
5
  SHA512:
6
- metadata.gz: 42a9a9d209908ea84a870c9a655d3227ab98725302f3fa799a37bd193cf980cfdac8f2391220b0f66df47be772a80aebe4802915b35ca7560154b4b3f06023fc
7
- data.tar.gz: 993a7b4835312e617d3c9554e3217384fded40b6c048bf63a331d0f55fa20a52ad4cb283000c3081dcdd7badcde57961019a08caa4f3135eb01cac1a95416a20
6
+ metadata.gz: 676af3d0f78e7b4f26d625a7cbef0658ef1432fda4454316281a734cb7c0caae95efe81f4d61ce033b99ef0e76904935e3dc4921ff2499e73ddfb9c50dd019f7
7
+ data.tar.gz: bbb6a3e476662d05180eb93cd06cab283b001a62b60ad15580898dcbc11f0b3065f863afd4f2502e8b00cd6072d2ac0d268692973329092cb9aa718f38a5a41b
data/.binding.repl.rc CHANGED
@@ -1,6 +1,3 @@
1
- #
2
- # a sample of what $HOME/.binding.repl.rc might look like.
3
- # the default lookup order for `binding.repl.auto` can be defined in this file.
4
- #
1
+ # sample file.
5
2
  [auto]
6
3
  order = ["irb", "rib", "pry", "ripl"]
data/.travis.yml CHANGED
@@ -5,8 +5,19 @@ rvm:
5
5
  - 1.9.3
6
6
  - 2.0.0
7
7
  - 2.1.0
8
+ - ruby-head
8
9
  - rbx
9
10
  - jruby-19mode
10
11
 
12
+ matrix:
13
+ allow_failures:
14
+ # TravisCI:
15
+ # jruby-d19 is not installed - installing.
16
+ # Searching for binary rubies, this might take some time.
17
+ # Requested binary installation but no rubies are available to download, consider skipping --binary flag.
18
+ # Gemset '' does not exist, 'rvm jruby-d19 do rvm gemset create ' first, or append '--create'.
19
+ # The command "rvm use jruby-d19 --install --binary --fuzzy" failed and exited with 2 during setup.
20
+ - rvm: jruby-19mode
21
+
11
22
  notifications:
12
23
  email: true
data/ChangeLog.txt CHANGED
@@ -1,22 +1,39 @@
1
+ == v0.10.0 (2014-02-08)
2
+ - add DELIMITER_REGEXP to BindingRepl::ENV.
3
+ it is a single reference kept to /[,:]/ which is used when parsing
4
+ shell environment variable, $auto_order.
5
+
6
+ - add BindingRepl::ExitValue
7
+ binding.repl.{auto,irb,pry,rib,ripl} return an instance of BindingRepl::ExitValue.
8
+
9
+ - move from test-unit to minitest (developer-facing change).
10
+ test suite has been rewritten on top of 'MiniTest::Test' instead of 'Test::Unit::TestCase'.
11
+ test-unit appears to be semi-deprecated and active development or change happens on 'minitest'.
12
+ minitest switch was smooth thanks to 'sed' !
13
+
14
+ - remove BindingRepl::ENV.disable_rc_file? (developer-facing change)
15
+ the inverse, BindingRepl::ENV.enable_rc_file?, is the only method binding.repl needs
16
+ to load the RC file. drop BindingRepl::ENV.disable_rc_file?.
17
+
18
+ - update the BindingRepl::LOOKUP hash to use string's as keys. (#23) (developer-facing changes)
19
+ - rename BindingRepl#invoke_console as BindingRepl#run_console. (developer-facing change)
20
+ - rename BindingRepl#fail! as BindingRepl#die(). (developer-facing change)
21
+ - remove BindingRepl.{name,to_s}
22
+
1
23
  == v0.9.0
2
24
  - read $HOME/.binding.repl.rc as TOML instead of JSON
3
25
  TOML is easy to read and write when compared with JSON. I don't think
4
26
  humans like writing JSON too much :) you can get up to speed with TOML
5
- at https://github.com/mojombo/toml.
6
- closes GH #12.
27
+ at https://github.com/mojombo/toml. (#12)
7
28
 
8
- - rename Binding.repl.auto_load_order as Binding.repl.auto_order.
9
- closes GH #14.
29
+ - rename Binding.repl.auto_load_order as Binding.repl.auto_order. (#14)
10
30
 
11
31
  - rename shell environment variable BINDING_REPL_ORDER as auto_order
12
32
  less keys to press, no SHIFT key needed!
13
33
  a little background on why I decided to try lowercase.
14
- http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html
15
- closes GH #15.
34
+ http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html (#15).
16
35
 
17
- - rename shell environment variable BINDING_REPL_RC as disable_rc.
18
- ditto.
19
- closes GH #15.
36
+ - rename shell environment variable BINDING_REPL_RC as disable_rc. (#15).
20
37
 
21
38
  - 1.9.2 support
22
39
  use of `private_constant` broke binding.repl support on 1.9.2
@@ -72,8 +89,7 @@
72
89
  see lib/binding.repl/console/*.rb for examples.
73
90
 
74
91
  == v0.7.0
75
- - catch JSON parse errors when reading .binding.repl.rc
76
- closes #7
92
+ - catch JSON parse errors when reading .binding.repl.rc (#7)
77
93
 
78
94
  - no longer read from project-local .binding.repl.rc file
79
95
  the $BINDING_REPL_ORDER environment variable can be set if you
@@ -81,12 +97,11 @@
81
97
 
82
98
  - read shell env var $BINDING_REPL_ORDER
83
99
  set of $BINDING_REPL_ORDER stops the .binding.repl.rc file from
84
- being loaded and takes precendence. closes #9.
100
+ being loaded and takes precendence. (#9)
85
101
 
86
102
  == v0.6.0
87
103
  - add Binding.repl.{disable!,enable!}.
88
- turn binding.repl.{pry,irb,ripl,auto} into a no-op.
89
- closes #8.
104
+ turn binding.repl.{pry,irb,ripl,auto} into a no-op. (#8)
90
105
 
91
106
  == v0.5.1
92
107
  - $CWD/.binding.repl.rc has precendence over $HOME/.binding.repl.rc
@@ -126,12 +141,10 @@
126
141
  Binding.repl and nowhere else, though.
127
142
 
128
143
  == v0.2.0
129
- - call IRB.setup() once
130
- fixes #4
144
+ - call IRB.setup() once (#4)
131
145
 
132
146
  - add binding.repl.auto
133
- auto discover the first available console.
134
- fixes #3
147
+ auto discover the first available console. (#3)
135
148
 
136
149
  == v0.1.1.1
137
150
  - doc improvements
data/Gemfile CHANGED
@@ -7,6 +7,7 @@ end
7
7
 
8
8
  group :test do
9
9
  gem "rspec-mocks"
10
+ gem "minitest"
10
11
  end
11
12
 
12
13
  group :test, :repls do
@@ -17,6 +18,6 @@ group :test, :repls do
17
18
  end
18
19
 
19
20
  platform :rbx do
20
- gem "rubysl"
21
- gem "rubysl-test-unit"
21
+ gem "rubysl-irb"
22
+ gem "rubysl-mutex_m"
22
23
  end
data/README.md CHANGED
@@ -79,44 +79,33 @@ __DOCS__
79
79
 
80
80
  __DEPENDENCIES__
81
81
 
82
- binding.repl doesn't depend on anything. it's up to you to meet the
83
- dependencies(pry, irb, rib, and/or ripl). `binding.repl.{ripl,pry,rib,irb}`
84
- will try to load the appropiate console for you if it looks like it
85
- hasn't been loaded yet.
82
+ binding.repl doesn't depend on anything but `toml`. it's up to you to meet the
83
+ console dependencies(pry, irb, rib, and/or ripl). `binding.repl.{ripl,pry,rib,irb}`
84
+ will try to load the appropiate console for you if it looks like it hasn't been loaded yet.
86
85
 
87
- __PLATFORM SUPPORT__
86
+ __RUBIES__
88
87
 
89
- should work on all 1.9+ ruby implementations. please open an issue if you find a bug!
88
+ all of them (jruby, MRI, rubinius). 1.9+ and up only, though.
89
+ check [.travis.yml](https://github.com/robgleeson/binding.repl/blob/master/.travis.yml) for a complete list.
90
90
 
91
- __INSTALL__
91
+ __CONTRIBUTE!__
92
+
93
+ [fork it](https://github.com/robgleeson/binding.repl/fork), clone it, change! <br>
94
+ open a pull request :)
92
95
 
96
+ some tips for working on the project:
93
97
  ```
94
- gem install binding.repl
98
+ cd $CLONED_DIR
99
+ bundle install
100
+ rake test # run tests
95
101
  ```
96
102
 
97
- __CREDIT__
98
-
99
- - [banisterfiend](https://github.com/banister) (John Mair)
100
- for pry
101
-
102
- - [Kyrylo](https://github.com/kyrylo) (Kyrylo Silin)
103
- for his hard work on pry.
104
-
105
- Rest of the Pry team(!!):
103
+ __INSTALL__
106
104
 
107
- - [cirwin](https://github.com/conradirwin), Conrad Irwin.
108
- - [ryanf](https://github.com/rf-), Ryan Fitzgerald.
109
- - [rking](https://github.com/rking), "rking", on adventures outside programming now.
105
+ ```
106
+ gem install binding.repl
107
+ ```
110
108
 
111
109
  __LICENSE__
112
110
 
113
111
  Public Domain. see UNLICENSE.txt.
114
-
115
-
116
- __CONTRIBUTING__
117
-
118
- 1. Fork it
119
- 2. Create your feature branch (`git checkout -b my-new-feature`)
120
- 3. Commit your changes (`git commit -am 'Add some feature'`)
121
- 4. Push to the branch (`git push origin my-new-feature`)
122
- 5. Create a new E-Note
data/Rakefile CHANGED
@@ -1,9 +1,9 @@
1
1
  require "bundler/gem_tasks"
2
2
  require "rake/testtask"
3
3
 
4
- Rake::TestTask.new do |t|
5
- t.test_files = FileList["test/*_test.rb"]
6
- t.verbose = true
4
+ desc "run tests"
5
+ task :test do
6
+ Dir["test/*_test.rb"].each { |test| require_relative(test) }
7
7
  end
8
8
  task :default => :test
9
9
 
data/binding.repl.gemspec CHANGED
@@ -3,8 +3,8 @@ require "./lib/binding.repl/version"
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "binding.repl"
5
5
  spec.version = BindingRepl.version
6
- spec.authors = ["Robert Gleeson"]
7
- spec.email = ["rob@flowof.info"]
6
+ spec.authors = ["Public Domain"]
7
+ spec.email = ["robert@flowof.info"]
8
8
  spec.description = "binding.repl: binding.pry for all ruby consoles"
9
9
  spec.summary = spec.description
10
10
  spec.homepage = "https://github.com/robgleeson/binding.repl"
data/lib/binding.repl.rb CHANGED
@@ -3,16 +3,8 @@ class BindingRepl
3
3
  LOOKUP.default = [proc { true }, proc { :'binding.repl.unknown_console' }]
4
4
  singleton_class.class_eval { attr_accessor :auto_order }
5
5
 
6
- def self.name
7
- "binding.repl"
8
- end
9
-
10
- def self.to_s
11
- name
12
- end
13
-
14
6
  #
15
- # returns when binding.repl is disabled.
7
+ # returns true when binding.repl is disabled.
16
8
  #
17
9
  # @return [Boolean]
18
10
  #
@@ -54,10 +46,10 @@ class BindingRepl
54
46
  # @return [void]
55
47
  #
56
48
  def self.add(console, initializer, runner)
57
- LOOKUP[console] = [initializer, runner]
49
+ LOOKUP[console.to_s] = [initializer, runner]
58
50
  define_method(console) do |options = {}|
59
- exit_value = invoke_console(console, options)
60
- invoke_failed?(exit_value) ? fail!(console) : exit_value
51
+ value = run_console(console, options)
52
+ value.failure? ? die(console) : value
61
53
  end
62
54
  end
63
55
 
@@ -67,48 +59,56 @@ class BindingRepl
67
59
  end
68
60
 
69
61
  def auto
70
- load_order, exit_value = Binding.repl.auto_order, nil
71
- load_order.each do |console|
72
- exit_value = invoke_console(console.to_sym, {})
73
- return exit_value unless invoke_failed?(exit_value)
74
- end
75
- if load_order.empty?
76
- raise LoadError, "no consoles found in Binding.repl.auto_order (empty)"
77
- elsif invoke_failed?(exit_value)
78
- raise LoadError, "no loadable consoles found (searched for #{load_order.join(', ')})"
62
+ consoles = Binding.repl.auto_order
63
+ value = run_any_console(consoles)
64
+ if consoles.empty?
65
+ raise LoadError, "no consoles available to load. Binding.repl.auto_order is empty"
66
+ elsif value.nil?
67
+ consoles_str = consoles.join(", ")
68
+ raise LoadError, "attempts to require any of the following consoles failed: #{consoles_str}"
69
+ else
70
+ value
79
71
  end
80
72
  end
81
73
 
82
74
  private
83
- def fail!(console)
84
- raise LoadError, "the console '#{console}' could not be loaded :("
75
+ def die(console)
76
+ raise LoadError, "failed to require '#{console}'"
85
77
  end
86
78
 
87
- def invoke_failed?(exit_value)
88
- exit_value = exit_value.to_s
89
- exit_value.start_with?("binding.repl") && exit_value != 'binding.repl.disabled'
79
+ def run_any_console(consoles)
80
+ consoles.each do |console|
81
+ value = run_console(console)
82
+ return value if value.success?
83
+ end
84
+ nil
90
85
  end
91
86
 
92
- def invoke_console(console, options)
87
+ def run_console(console, options = {})
88
+ console = console.to_s
93
89
  if Binding.repl.disabled?
94
- return :'binding.repl.disabled'
90
+ value = BindingRepl::ExitValue.disabled_value
91
+ else
92
+ initializer, runner = @lookup[console]
93
+ initializer.call
94
+ @lookup[console] = [@lookup.default.at(0), runner]
95
+ value = runner.call @binding, options
95
96
  end
96
- initializer, runner = @lookup[console]
97
- initializer.call
98
- @lookup[console] = [@lookup.default.at(0), runner]
99
- runner.call @binding, options
100
97
  rescue LoadError
101
- :'binding.repl.load_error'
98
+ value = BindingRepl::ExitValue.load_error_value
99
+ ensure
100
+ return BindingRepl::ExitValue.new(value)
102
101
  end
103
102
  end
103
+
104
104
  require_relative "binding.repl/core_ext/binding"
105
105
  require_relative "binding.repl/env"
106
106
  require_relative "binding.repl/rcfile"
107
+ require_relative "binding.repl/exit_value"
107
108
  require_relative "binding.repl/version"
108
109
  require_relative "binding.repl/console/pry"
109
110
  require_relative "binding.repl/console/irb"
110
111
  require_relative "binding.repl/console/ripl"
111
112
  require_relative "binding.repl/console/rib"
112
-
113
113
  BindingRepl::RCFile.load
114
114
  BindingRepl.auto_order = BindingRepl::ENV.auto_order
@@ -1,18 +1,15 @@
1
1
  module BindingRepl::ENV
2
2
  @env = ::ENV
3
3
  DEFAULT_AUTO_ORDER = ["pry", "ripl", "rib", "irb"]
4
+ DELIMITER_REGEXP = /[:,]/
4
5
 
5
6
  module_function
6
7
  def enable_rc_file?
7
8
  @env['disable_rc'] != 'true' and @env['disable_rc'] != '1'
8
9
  end
9
10
 
10
- def disable_rc_file?
11
- !enable_rc_file?
12
- end
13
-
14
11
  def auto_order
15
- env_order = @env['auto_order'].to_s.split /[:,]/
12
+ env_order = @env['auto_order'].to_s.split(DELIMITER_REGEXP)
16
13
  env_order.empty? ? DEFAULT_AUTO_ORDER : env_order
17
14
  end
18
15
  end
@@ -0,0 +1,36 @@
1
+ class BindingRepl::ExitValue
2
+ STATUS_MAP = {
3
+ :disabled => :'binding.repl.disabled',
4
+ :unknown_console => :'binding.repl.unknown_console'
5
+ }
6
+
7
+ def self.load_error_value
8
+ STATUS_MAP[:unknown_console]
9
+ end
10
+
11
+ def self.disabled_value
12
+ STATUS_MAP[:disabled]
13
+ end
14
+
15
+ attr_reader :object
16
+
17
+ def initialize(object)
18
+ @object = object
19
+ end
20
+
21
+ def success?
22
+ not failure?
23
+ end
24
+
25
+ def failure?
26
+ load_error?
27
+ end
28
+
29
+ def disabled?
30
+ STATUS_MAP[:disabled] == object
31
+ end
32
+
33
+ def load_error?
34
+ STATUS_MAP[:unknown_console] == object
35
+ end
36
+ end
@@ -1,5 +1,5 @@
1
1
  class BindingRepl
2
- VERSION = "0.9.0".freeze
2
+ VERSION = "0.10.0".freeze
3
3
 
4
4
  def self.version
5
5
  VERSION
@@ -1,5 +1,5 @@
1
1
  require_relative "setup"
2
- class BindingReplAutoTest < Test::Unit::TestCase
2
+ class BindingReplAutoTest < MiniTest::Test
3
3
  include BindingRepl::Mock
4
4
  def setup
5
5
  @before = BindingRepl.auto_order
@@ -25,13 +25,21 @@ class BindingReplAutoTest < Test::Unit::TestCase
25
25
 
26
26
  def test_no_matches_on_auto
27
27
  BindingRepl.auto_order = []
28
- e = assert_raise(LoadError) {binding.repl.auto}
29
- assert_equal "no consoles found in Binding.repl.auto_order (empty)", e.message
28
+ e = assert_raises(LoadError) {binding.repl.auto}
29
+ assert_equal "no consoles available to load. Binding.repl.auto_order is empty", e.message
30
30
  end
31
31
 
32
32
  def test_no_requireable_console_on_auto
33
33
  BindingRepl.auto_order = ["ry", "burp", "orc"]
34
- e = assert_raise(LoadError) {binding.repl.auto}
35
- assert_equal "no loadable consoles found (searched for ry, burp, orc)", e.message
34
+ e = assert_raises(LoadError) {binding.repl.auto}
35
+ assert_equal "attempts to require any of the following consoles failed: ry, burp, orc", e.message
36
+ end
37
+
38
+ def test_auto_on_disable
39
+ BindingRepl.disable!
40
+ value = binding.repl.auto
41
+ assert_equal value.disabled?, true
42
+ ensure
43
+ BindingRepl.enable!
36
44
  end
37
45
  end
@@ -1,5 +1,5 @@
1
1
  require_relative "setup"
2
- class BindingReplEnvTest < Test::Unit::TestCase
2
+ class BindingReplEnvTest < MiniTest::Test
3
3
  def teardown
4
4
  ENV.delete "disable_rc"
5
5
  ENV.delete "auto_order"
@@ -1,6 +1,6 @@
1
1
  require_relative "setup"
2
2
  require "irb"
3
- class BindingReplIrbTest < Test::Unit::TestCase
3
+ class BindingReplIrbTest < MiniTest::Test
4
4
  include BindingRepl::Mock
5
5
  def test_irb
6
6
  expect_any_instance_of(::IRB::Irb).to receive(:eval_input)
@@ -1,5 +1,5 @@
1
1
  require_relative "setup"
2
- class BindingReplPryTest < Test::Unit::TestCase
2
+ class BindingReplPryTest < MiniTest::Test
3
3
  include BindingRepl::Mock
4
4
  def test_pry
5
5
  expect(Pry).to receive(:start).with(instance_of(Binding), {})
@@ -3,7 +3,7 @@ testcase = if defined?(Rubinius)
3
3
  # skip Rubinius (breaks with FakeFS).
4
4
  Object
5
5
  else
6
- Test::Unit::TestCase
6
+ MiniTest::Test
7
7
  end
8
8
 
9
9
  class BindingReplRCFileTest < testcase
@@ -11,6 +11,7 @@ class BindingReplRCFileTest < testcase
11
11
  FILENAME = File.basename BindingRepl::RCFile.path
12
12
 
13
13
  def setup
14
+ @before = BindingRepl.auto_order
14
15
  FakeFS.activate!
15
16
  dir = FakeFS::FileSystem.add DIR
16
17
  file = FakeFS::FakeFile.new FILENAME, dir
@@ -22,6 +23,7 @@ class BindingReplRCFileTest < testcase
22
23
  end
23
24
 
24
25
  def teardown
26
+ BindingRepl.auto_order = @before
25
27
  FakeFS.deactivate!
26
28
  end
27
29
 
@@ -1,5 +1,5 @@
1
1
  require_relative "setup"
2
- class BindingReplRibTest < Test::Unit::TestCase
2
+ class BindingReplRibTest < MiniTest::Test
3
3
  include BindingRepl::Mock
4
4
  def test_rib
5
5
  expect(Rib).to receive(:anchor).with(instance_of(Binding), {})
@@ -1,5 +1,5 @@
1
1
  require_relative "setup"
2
- class BindingReplRiplTest < Test::Unit::TestCase
2
+ class BindingReplRiplTest < MiniTest::Test
3
3
  include BindingRepl::Mock
4
4
  def test_ripl
5
5
  expect(Ripl).to receive(:start).with({binding: instance_of(Binding)})
data/test/setup.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require "bundler"
2
- require "test/unit"
3
2
  Bundler.require :default, :test
3
+ require "minitest/unit"
4
+ require "minitest/autorun"
4
5
  require_relative "support/binding.repl/mock"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: binding.repl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
- - Robert Gleeson
7
+ - Public Domain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-05 00:00:00.000000000 Z
11
+ date: 2014-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: toml
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '0'
55
55
  description: 'binding.repl: binding.pry for all ruby consoles'
56
56
  email:
57
- - rob@flowof.info
57
+ - robert@flowof.info
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
@@ -80,6 +80,7 @@ files:
80
80
  - lib/binding.repl/console/ripl.rb
81
81
  - lib/binding.repl/core_ext/binding.rb
82
82
  - lib/binding.repl/env.rb
83
+ - lib/binding.repl/exit_value.rb
83
84
  - lib/binding.repl/rcfile.rb
84
85
  - lib/binding.repl/version.rb
85
86
  - test/binding_repl_auto_test.rb
@@ -98,11 +99,11 @@ metadata: {}
98
99
  post_install_message: |2+
99
100
 
100
101
  ** binding.repl **
101
- Thanks for installing v0.9.0!
102
+ Thanks for installing v0.10.0!
102
103
  Check out ChangeLog.txt to read about what's changed.
103
104
 
104
105
  ChangeLog.txt
105
- https://github.com/robgleeson/binding.repl/blob/v0.9.0/ChangeLog.txt
106
+ https://github.com/robgleeson/binding.repl/blob/v0.10.0/ChangeLog.txt
106
107
 
107
108
  rdoc_options: []
108
109
  require_paths:
@@ -119,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
120
  version: '0'
120
121
  requirements: []
121
122
  rubyforge_project:
122
- rubygems_version: 2.2.0
123
+ rubygems_version: 2.2.2
123
124
  signing_key:
124
125
  specification_version: 4
125
126
  summary: 'binding.repl: binding.pry for all ruby consoles'
@@ -133,4 +134,3 @@ test_files:
133
134
  - test/binding_repl_ripl_test.rb
134
135
  - test/setup.rb
135
136
  - test/support/binding.repl/mock.rb
136
- has_rdoc: