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 +4 -4
- data/.binding.repl.rc +1 -4
- data/.travis.yml +11 -0
- data/ChangeLog.txt +31 -18
- data/Gemfile +3 -2
- data/README.md +18 -29
- data/Rakefile +3 -3
- data/binding.repl.gemspec +2 -2
- data/lib/binding.repl.rb +34 -34
- data/lib/binding.repl/env.rb +2 -5
- data/lib/binding.repl/exit_value.rb +36 -0
- data/lib/binding.repl/version.rb +1 -1
- data/test/binding_repl_auto_test.rb +13 -5
- data/test/binding_repl_env_test.rb +1 -1
- data/test/binding_repl_irb_test.rb +1 -1
- data/test/binding_repl_pry_test.rb +1 -1
- data/test/binding_repl_rcfile_test.rb +3 -1
- data/test/binding_repl_rib_test.rb +1 -1
- data/test/binding_repl_ripl_test.rb +1 -1
- data/test/setup.rb +2 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 881260583be0c5997a75febf99efbf065f60a529
|
4
|
+
data.tar.gz: 986efe28b8769dd1ffeac275eba4498d91450580
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 676af3d0f78e7b4f26d625a7cbef0658ef1432fda4454316281a734cb7c0caae95efe81f4d61ce033b99ef0e76904935e3dc4921ff2499e73ddfb9c50dd019f7
|
7
|
+
data.tar.gz: bbb6a3e476662d05180eb93cd06cab283b001a62b60ad15580898dcbc11f0b3065f863afd4f2502e8b00cd6072d2ac0d268692973329092cb9aa718f38a5a41b
|
data/.binding.repl.rc
CHANGED
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.
|
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-
|
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
|
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
|
-
|
86
|
+
__RUBIES__
|
88
87
|
|
89
|
-
|
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
|
-
|
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
|
-
|
98
|
+
cd $CLONED_DIR
|
99
|
+
bundle install
|
100
|
+
rake test # run tests
|
95
101
|
```
|
96
102
|
|
97
|
-
|
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
|
-
|
108
|
-
|
109
|
-
|
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
|
-
|
5
|
-
|
6
|
-
|
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 = ["
|
7
|
-
spec.email = ["
|
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
|
-
|
60
|
-
|
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
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
raise LoadError, "
|
77
|
-
|
78
|
-
|
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
|
84
|
-
raise LoadError, "
|
75
|
+
def die(console)
|
76
|
+
raise LoadError, "failed to require '#{console}'"
|
85
77
|
end
|
86
78
|
|
87
|
-
def
|
88
|
-
|
89
|
-
|
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
|
87
|
+
def run_console(console, options = {})
|
88
|
+
console = console.to_s
|
93
89
|
if Binding.repl.disabled?
|
94
|
-
|
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
|
-
|
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
|
data/lib/binding.repl/env.rb
CHANGED
@@ -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
|
data/lib/binding.repl/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require_relative "setup"
|
2
|
-
class BindingReplAutoTest < Test
|
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 =
|
29
|
-
assert_equal "no consoles
|
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 =
|
35
|
-
assert_equal "
|
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
|
@@ -3,7 +3,7 @@ testcase = if defined?(Rubinius)
|
|
3
3
|
# skip Rubinius (breaks with FakeFS).
|
4
4
|
Object
|
5
5
|
else
|
6
|
-
Test
|
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
|
|
data/test/setup.rb
CHANGED
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.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Public Domain
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
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
|
-
-
|
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.
|
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.
|
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.
|
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:
|