ripl-multi_line 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +4 -0
- data/README.rdoc +8 -4
- data/deps.rip +1 -1
- data/lib/ripl/multi_line.rb +16 -5
- metadata +4 -21
- data/test/runner_test.rb +0 -248
- data/test/shell_test.rb +0 -113
- data/test/test_helper.rb +0 -60
data/CHANGELOG.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
== Description
|
2
|
-
This {ripl}[
|
2
|
+
This {ripl}[https://github.com/cldwalker/ripl] plugin allows you to evaluate multiple lines of Ruby code.
|
3
3
|
|
4
4
|
== Install
|
5
5
|
Install the gem with
|
@@ -14,11 +14,15 @@ Add the following line to your <tt>~/.riplrc</tt>
|
|
14
14
|
|
15
15
|
You can customize your multi-line prompt with the <tt>:multi_line_prompt</tt> option. For example, put this into your <tt>~/.riplrc</tt>:
|
16
16
|
|
17
|
-
Ripl.config[:multi_line_prompt] = ' >'
|
17
|
+
Ripl.config[:multi_line_prompt] = ' > '
|
18
18
|
|
19
19
|
If you are in multi-line situation, you can press <tt>ctrl+c</tt> and the last line will be removed.
|
20
20
|
|
21
|
-
==
|
22
|
-
|
21
|
+
== AutoIndent
|
22
|
+
There is also an indention plugin available: {ripl-auto_indent}[https://github.com/janlelis/ripl-auto_indent]
|
23
|
+
|
24
|
+
== Planned for version 0.3.0
|
25
|
+
* Tests :)
|
26
|
+
* Replaceable check if syntax is valid (then, the plugin can be used for other languages than Ruby)
|
23
27
|
|
24
28
|
J-_-L
|
data/deps.rip
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ripl >=0.
|
1
|
+
ripl >=0.3.0
|
data/lib/ripl/multi_line.rb
CHANGED
@@ -2,9 +2,9 @@ require 'ripl'
|
|
2
2
|
|
3
3
|
module Ripl
|
4
4
|
module MultiLine
|
5
|
-
VERSION = '0.2.
|
5
|
+
VERSION = '0.2.3'
|
6
6
|
ERROR_REGEXP = /#{
|
7
|
-
[ %q%unexpected
|
7
|
+
[ %q%unexpected \$end%,
|
8
8
|
%q%unterminated [a-z]+ meets end of file%,
|
9
9
|
# rubinius
|
10
10
|
%q%expecting '\\n' or ';'%,
|
@@ -12,7 +12,7 @@ module Ripl
|
|
12
12
|
%q%expecting '}'%,
|
13
13
|
# jruby
|
14
14
|
%q%syntax error, unexpected end-of-file%,
|
15
|
-
]
|
15
|
+
]*'|' }/
|
16
16
|
|
17
17
|
def before_loop
|
18
18
|
super
|
@@ -20,7 +20,16 @@ module Ripl
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def prompt
|
23
|
-
@buffer
|
23
|
+
if @buffer
|
24
|
+
config[:multi_line_prompt].respond_to?(:call) ?
|
25
|
+
config[:multi_line_prompt].call :
|
26
|
+
config[:multi_line_prompt]
|
27
|
+
else
|
28
|
+
super
|
29
|
+
end
|
30
|
+
rescue StandardError, SyntaxError
|
31
|
+
warn "ripl: Error while creating prompt:\n"+ format_error($!)
|
32
|
+
Ripl::Shell::OPTIONS[:prompt]
|
24
33
|
end
|
25
34
|
|
26
35
|
def loop_once
|
@@ -68,6 +77,8 @@ module Ripl
|
|
68
77
|
end
|
69
78
|
|
70
79
|
Ripl::Shell.include Ripl::MultiLine
|
71
|
-
Ripl.config[:multi_line_prompt] ||=
|
80
|
+
Ripl.config[:multi_line_prompt] ||= proc do # you can also use a plain string here
|
81
|
+
'|' + ' '*(Ripl.shell.instance_variable_get(:@prompt).size-1) # '| '
|
82
|
+
end
|
72
83
|
|
73
84
|
# J-_-L
|
metadata
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ripl-multi_line
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 2
|
8
|
-
- 2
|
9
|
-
version: 0.2.2
|
4
|
+
prerelease:
|
5
|
+
version: 0.2.3
|
10
6
|
platform: ruby
|
11
7
|
authors:
|
12
8
|
- Jan Lelis
|
@@ -14,7 +10,7 @@ autorequire:
|
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
12
|
|
17
|
-
date: 2011-
|
13
|
+
date: 2011-02-21 00:00:00 +01:00
|
18
14
|
default_executable:
|
19
15
|
dependencies:
|
20
16
|
- !ruby/object:Gem::Dependency
|
@@ -25,10 +21,6 @@ dependencies:
|
|
25
21
|
requirements:
|
26
22
|
- - ">="
|
27
23
|
- !ruby/object:Gem::Version
|
28
|
-
segments:
|
29
|
-
- 0
|
30
|
-
- 3
|
31
|
-
- 0
|
32
24
|
version: 0.3.0
|
33
25
|
type: :runtime
|
34
26
|
version_requirements: *id001
|
@@ -43,9 +35,6 @@ extra_rdoc_files:
|
|
43
35
|
- LICENSE.txt
|
44
36
|
files:
|
45
37
|
- lib/ripl/multi_line.rb
|
46
|
-
- test/test_helper.rb
|
47
|
-
- test/shell_test.rb
|
48
|
-
- test/runner_test.rb
|
49
38
|
- LICENSE.txt
|
50
39
|
- README.rdoc
|
51
40
|
- CHANGELOG.rdoc
|
@@ -66,23 +55,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
55
|
requirements:
|
67
56
|
- - ">="
|
68
57
|
- !ruby/object:Gem::Version
|
69
|
-
segments:
|
70
|
-
- 0
|
71
58
|
version: "0"
|
72
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
60
|
none: false
|
74
61
|
requirements:
|
75
62
|
- - ">="
|
76
63
|
- !ruby/object:Gem::Version
|
77
|
-
segments:
|
78
|
-
- 1
|
79
|
-
- 3
|
80
|
-
- 6
|
81
64
|
version: 1.3.6
|
82
65
|
requirements: []
|
83
66
|
|
84
67
|
rubyforge_project:
|
85
|
-
rubygems_version: 1.
|
68
|
+
rubygems_version: 1.5.2
|
86
69
|
signing_key:
|
87
70
|
specification_version: 3
|
88
71
|
summary: A ripl plugin for multi-line eval.
|
data/test/runner_test.rb
DELETED
@@ -1,248 +0,0 @@
|
|
1
|
-
require File.join(File.dirname(__FILE__), 'test_helper')
|
2
|
-
|
3
|
-
describe "Runner" do
|
4
|
-
describe ".start" do
|
5
|
-
before { reset_ripl }
|
6
|
-
|
7
|
-
it "loads riplrc" do
|
8
|
-
mock_riplrc
|
9
|
-
mock_shell
|
10
|
-
Ripl.start
|
11
|
-
end
|
12
|
-
|
13
|
-
it "doesn't load riplrc" do
|
14
|
-
mock_shell
|
15
|
-
dont_allow(Runner).load_rc(anything)
|
16
|
-
Ripl.start :riplrc => false
|
17
|
-
end
|
18
|
-
|
19
|
-
it "sets a shell's variables" do
|
20
|
-
mock_riplrc
|
21
|
-
mock_shell
|
22
|
-
Ripl.start(:name=>'shh')
|
23
|
-
Ripl.shell.name.should == 'shh'
|
24
|
-
end
|
25
|
-
|
26
|
-
it "passes options to Ripl.config" do
|
27
|
-
mock_riplrc
|
28
|
-
mock_shell
|
29
|
-
Ripl.start(:history=>'~/.mah_history')
|
30
|
-
Ripl.config[:history].should == '~/.mah_history'
|
31
|
-
end
|
32
|
-
|
33
|
-
it "overrides config set in riplrc" do
|
34
|
-
mock_riplrc { Ripl.config[:name] = 'blah' }
|
35
|
-
mock_shell
|
36
|
-
Ripl.start(:name=>'dude')
|
37
|
-
Ripl.shell.name.should == 'dude'
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
describe ".run" do
|
42
|
-
describe "riplrc" do
|
43
|
-
before { reset_ripl }
|
44
|
-
|
45
|
-
it "sets config" do
|
46
|
-
mock_riplrc { Ripl.config[:blah] = true }
|
47
|
-
mock_shell
|
48
|
-
Runner.run([])
|
49
|
-
Ripl.config[:blah].should == true
|
50
|
-
end
|
51
|
-
|
52
|
-
it "catches and prints error" do
|
53
|
-
mock(Runner).load(anything) { raise SyntaxError }
|
54
|
-
mock_shell
|
55
|
-
capture_stderr { Runner.run([]) }.should =~ %r{^ripl: Error while loading ~/.riplrc:\nSyntaxError:}
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
describe "with subcommand" do
|
60
|
-
def set_dollar_zero(val)
|
61
|
-
$progname = $0
|
62
|
-
alias $0 $progname
|
63
|
-
$0 = val
|
64
|
-
end
|
65
|
-
|
66
|
-
def mock_exec(*args)
|
67
|
-
mock(Runner).exec('ripl-rails', *args) do
|
68
|
-
set_dollar_zero 'ripl-rails'
|
69
|
-
ARGV.replace(args)
|
70
|
-
Ripl.start
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
it "gets invoked with arguments" do
|
75
|
-
mock_exec 'blah'
|
76
|
-
ripl("rails", 'blah')
|
77
|
-
end
|
78
|
-
|
79
|
-
it "has -F global option parsed" do
|
80
|
-
mock_exec '-F'
|
81
|
-
dont_allow(Runner).load_rc(anything)
|
82
|
-
ripl("rails", "-F", :riplrc=>false)
|
83
|
-
end
|
84
|
-
|
85
|
-
it "saves arguments passed to it" do
|
86
|
-
mock_exec 'blah', '-F'
|
87
|
-
ripl("rails", "blah", "-F", :riplrc=>false)
|
88
|
-
Ripl::Runner.argv.should == ['blah', '-F']
|
89
|
-
end
|
90
|
-
|
91
|
-
it "has other global option parsed" do
|
92
|
-
mock_exec '-r=blah'
|
93
|
-
mock(Runner).require('blah')
|
94
|
-
ripl("rails", "-r=blah")
|
95
|
-
end
|
96
|
-
|
97
|
-
it "has automatic --help" do
|
98
|
-
mock_exec '--help'
|
99
|
-
mock(Runner).exit
|
100
|
-
ripl("rails", "--help").chomp.should == "ripl rails [OPTIONS] [ARGS]"
|
101
|
-
end
|
102
|
-
|
103
|
-
it "that is invalid aborts" do
|
104
|
-
mock(Runner).abort("`zzz' is not a ripl command.")
|
105
|
-
ripl 'zzz', :riplrc => false, :loop => false
|
106
|
-
end
|
107
|
-
after_all { set_dollar_zero 'ripl' }
|
108
|
-
end
|
109
|
-
|
110
|
-
describe "with -I option" do
|
111
|
-
before { @old_load_path = $:.dup }
|
112
|
-
after { $:.replace @old_load_path }
|
113
|
-
|
114
|
-
it "and equal sign adds to $LOAD_PATH" do
|
115
|
-
ripl("-I=blah")
|
116
|
-
$:[0].should == 'blah'
|
117
|
-
end
|
118
|
-
|
119
|
-
it "and no equal sign adds to $LOAD_PATH" do
|
120
|
-
ripl("-Ispec")
|
121
|
-
$:[0].should == 'spec'
|
122
|
-
end
|
123
|
-
|
124
|
-
it "and whitespace delimited argument adds to $LOAD_PATH" do
|
125
|
-
ripl("-I", "spec")
|
126
|
-
$:[0].should == 'spec'
|
127
|
-
end
|
128
|
-
|
129
|
-
it "containing multiple paths adds to $LOAD_PATH" do
|
130
|
-
ripl("-I=app:lib")
|
131
|
-
$:[0,2].should == ['app', 'lib']
|
132
|
-
end
|
133
|
-
|
134
|
-
it "called more than once adds to $LOAD_PATH" do
|
135
|
-
ripl("-Ilib", "-Ispec")
|
136
|
-
$:[0,2].should == ['spec', 'lib']
|
137
|
-
end
|
138
|
-
|
139
|
-
it "with invalid argument doesn't add to $LOAD_PATH" do
|
140
|
-
previous_size = $:.size
|
141
|
-
ripl("-I")
|
142
|
-
$:.size.should == previous_size
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
146
|
-
describe "with -r option" do
|
147
|
-
it "and equal sign requires path" do
|
148
|
-
mock(Runner).require('rip')
|
149
|
-
ripl("-r=rip")
|
150
|
-
end
|
151
|
-
|
152
|
-
it "and no equal sign requires path" do
|
153
|
-
mock(Runner).require('rip')
|
154
|
-
ripl("-rrip")
|
155
|
-
end
|
156
|
-
|
157
|
-
it "and whitespace delimited argument requires path" do
|
158
|
-
mock(Runner).require('rip')
|
159
|
-
ripl("-r", "rip")
|
160
|
-
end
|
161
|
-
|
162
|
-
it "called more than once requires paths" do
|
163
|
-
mock(Runner).require('rip')
|
164
|
-
mock(Runner).require('dude')
|
165
|
-
ripl("-rrip", "-rdude")
|
166
|
-
end
|
167
|
-
|
168
|
-
it "with invalid argument requires blank" do
|
169
|
-
mock(Runner).require('')
|
170
|
-
ripl('-r')
|
171
|
-
end
|
172
|
-
end
|
173
|
-
|
174
|
-
it "with -f option doesn't load irbrc" do
|
175
|
-
reset_ripl
|
176
|
-
reset_config
|
177
|
-
stub(Kernel).at_exit()
|
178
|
-
mock_shell { |shell|
|
179
|
-
mock(shell).loop_once { throw :ripl_exit }
|
180
|
-
dont_allow(Runner).load_rc(anything)
|
181
|
-
}
|
182
|
-
ripl("-f", :loop => false)
|
183
|
-
Ripl.config[:irbrc] = '~/.irbrc'
|
184
|
-
end
|
185
|
-
|
186
|
-
it "with -F option doesn't load riplrc" do
|
187
|
-
reset_ripl
|
188
|
-
dont_allow(Runner).load_rc(anything)
|
189
|
-
mock_shell { |shell|
|
190
|
-
stub(Kernel).at_exit
|
191
|
-
mock(shell).before_loop
|
192
|
-
mock(shell).loop_once { throw :ripl_exit }
|
193
|
-
}
|
194
|
-
ripl("-F", :riplrc => false, :loop => false)
|
195
|
-
end
|
196
|
-
|
197
|
-
it "with -d option sets $DEBUG" do
|
198
|
-
ripl("-d")
|
199
|
-
$DEBUG.should == true
|
200
|
-
$DEBUG = nil
|
201
|
-
end
|
202
|
-
|
203
|
-
it "with -v option prints version" do
|
204
|
-
mock(Runner).exit
|
205
|
-
ripl("-v").chomp.should == Ripl::VERSION
|
206
|
-
end
|
207
|
-
|
208
|
-
it "with -h option prints help" do
|
209
|
-
mock(Runner).exit
|
210
|
-
actual = ripl("-h")
|
211
|
-
actual.should =~ /^Usage: ripl/
|
212
|
-
actual.should =~ /Options:\n -f/
|
213
|
-
end
|
214
|
-
|
215
|
-
it "with invalid options prints errors" do
|
216
|
-
capture_stderr {
|
217
|
-
ripl('--blah', '-z')
|
218
|
-
}.chomp.should == "ripl: invalid option `blah'\nripl: invalid option `z'"
|
219
|
-
end
|
220
|
-
|
221
|
-
describe "with plugin" do
|
222
|
-
before_all do
|
223
|
-
Moo = Module.new do
|
224
|
-
def parse_option(option, argv)
|
225
|
-
option == '--moo' ? puts("MOOOO") : super
|
226
|
-
end
|
227
|
-
end
|
228
|
-
Runner.extend Moo
|
229
|
-
Runner.add_options ['--moo', 'just moos']
|
230
|
-
end
|
231
|
-
|
232
|
-
it "parses plugin option" do
|
233
|
-
ripl("--moo").chomp.should == 'MOOOO'
|
234
|
-
end
|
235
|
-
|
236
|
-
it "displays plugin option in --help" do
|
237
|
-
mock(Runner).exit
|
238
|
-
ripl("--help").should =~ /--moo\s*just moos/
|
239
|
-
end
|
240
|
-
|
241
|
-
it "handles invalid option" do
|
242
|
-
capture_stderr {
|
243
|
-
ripl('--blah')
|
244
|
-
}.chomp.should == "ripl: invalid option `blah'"
|
245
|
-
end
|
246
|
-
end
|
247
|
-
end
|
248
|
-
end
|
data/test/shell_test.rb
DELETED
@@ -1,113 +0,0 @@
|
|
1
|
-
require File.join(File.dirname(__FILE__), 'test_helper')
|
2
|
-
require 'ripl/multi_line' # TODO relative
|
3
|
-
|
4
|
-
describe "Shell" do
|
5
|
-
before { reset_ripl }
|
6
|
-
|
7
|
-
def shell(options={})
|
8
|
-
Ripl.shell(options)
|
9
|
-
end
|
10
|
-
|
11
|
-
describe "#loop" do
|
12
|
-
before { mock(shell).before_loop }
|
13
|
-
it "exits with exit" do
|
14
|
-
mock(shell).get_input { 'exit' }
|
15
|
-
dont_allow(shell).eval_input
|
16
|
-
shell.loop
|
17
|
-
end
|
18
|
-
|
19
|
-
it "exits with quit" do
|
20
|
-
mock(shell).get_input { 'quit' }
|
21
|
-
dont_allow(shell).eval_input
|
22
|
-
shell.loop
|
23
|
-
end
|
24
|
-
|
25
|
-
it "exits with Control-D" do
|
26
|
-
mock(shell).get_input { nil }
|
27
|
-
dont_allow(shell).eval_input
|
28
|
-
shell.loop
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
it "#loop_once handles Control-C" do
|
33
|
-
mock(shell).get_input { raise Interrupt }
|
34
|
-
dont_allow(shell).eval_input
|
35
|
-
capture_stdout { shell.loop_once }.should == "\n"
|
36
|
-
end
|
37
|
-
|
38
|
-
describe "#prompt" do
|
39
|
-
it "should be set to config[:multi_line_prompt]" do
|
40
|
-
mock(shell).get_input { '[' }
|
41
|
-
shell.loop_once
|
42
|
-
shell.prompt.should == Ripl.config[:multi_line_prompt]
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
describe "#before_loop" do
|
47
|
-
before_all { Ripl::Commands.send(:define_method, :ping) { 'pong' } }
|
48
|
-
before { reset_config }
|
49
|
-
it "adds commands to main from Commands" do
|
50
|
-
stub(Ripl::Runner).load_rc
|
51
|
-
stub(Kernel).at_exit
|
52
|
-
Ripl.shell.before_loop
|
53
|
-
Ripl.shell.loop_eval("ping").should == 'pong'
|
54
|
-
end
|
55
|
-
|
56
|
-
it "adds commands to fixnum from Commands" do
|
57
|
-
stub(Ripl::Runner).load_rc
|
58
|
-
Ripl.shell.binding = 1.send(:binding)
|
59
|
-
stub(Kernel).at_exit
|
60
|
-
Ripl.shell.before_loop
|
61
|
-
Ripl.shell.loop_eval("ping").should == 'pong'
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
describe "#eval_input" do
|
66
|
-
before { @line = shell.line; shell.eval_input("10 ** 2") }
|
67
|
-
|
68
|
-
describe "normally" do
|
69
|
-
it "sets result" do
|
70
|
-
shell.result.should == 100
|
71
|
-
end
|
72
|
-
|
73
|
-
it "sets _" do
|
74
|
-
shell.eval_input('_')
|
75
|
-
shell.result.should == 100
|
76
|
-
end
|
77
|
-
|
78
|
-
it "increments line" do
|
79
|
-
shell.line.should == @line + 1
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
describe "with error" do
|
84
|
-
before {
|
85
|
-
@line = shell.line
|
86
|
-
@stderr = capture_stderr { shell.eval_input('{') }
|
87
|
-
}
|
88
|
-
|
89
|
-
it "prints it" do
|
90
|
-
@stderr.should =~ /^(?:SyntaxError: compile error|SyntaxError: \(ripl\):\d+: syntax error)/
|
91
|
-
end
|
92
|
-
|
93
|
-
it "sets @error_raised" do
|
94
|
-
shell.instance_variable_get("@error_raised").should == true
|
95
|
-
end
|
96
|
-
|
97
|
-
it "increments line" do
|
98
|
-
shell.line.should == @line + 1
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
describe "API#" do
|
104
|
-
Shell::API.instance_methods.delete_if {|e| e[/=$/]}.each do |meth|
|
105
|
-
it "#{meth} is accessible to plugins" do
|
106
|
-
mod = Object.const_set "Ping_#{meth}", Module.new
|
107
|
-
mod.send(:define_method, meth) { "pong_#{meth}" }
|
108
|
-
Shell.send :include, mod
|
109
|
-
shell.send(meth).should == "pong_#{meth}"
|
110
|
-
end
|
111
|
-
end
|
112
|
-
end
|
113
|
-
end
|
data/test/test_helper.rb
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
require 'bacon'
|
2
|
-
require 'bacon/bits'
|
3
|
-
require 'rr'
|
4
|
-
require 'bacon/rr'
|
5
|
-
require 'stringio'
|
6
|
-
require 'ripl'
|
7
|
-
include Ripl
|
8
|
-
|
9
|
-
module Helpers
|
10
|
-
def ripl(*args)
|
11
|
-
options = args[-1].is_a?(Hash) ? args.pop : {}
|
12
|
-
mock_riplrc unless options[:riplrc] == false
|
13
|
-
mock(Ripl.shell).loop unless options[:loop] == false
|
14
|
-
capture_stdout { Ripl::Runner.run(args) }
|
15
|
-
end
|
16
|
-
|
17
|
-
def mock_riplrc(&block)
|
18
|
-
mock(Runner).load_rc(Ripl.config[:riplrc], &block)
|
19
|
-
end
|
20
|
-
|
21
|
-
def mock_shell(&block)
|
22
|
-
mock(Shell).create(anything) {|e|
|
23
|
-
shell = Shell.new(e)
|
24
|
-
block ? block.call(shell) : mock(shell).loop
|
25
|
-
shell
|
26
|
-
}
|
27
|
-
end
|
28
|
-
|
29
|
-
def reset_ripl
|
30
|
-
Ripl.instance_eval "@config = @shell = @riplrc = nil"
|
31
|
-
end
|
32
|
-
|
33
|
-
def reset_config
|
34
|
-
Ripl.config.merge! :history => '~/.irb_history', :completion => {}
|
35
|
-
end
|
36
|
-
|
37
|
-
def capture_stdout(&block)
|
38
|
-
original_stdout = $stdout
|
39
|
-
$stdout = fake = StringIO.new
|
40
|
-
begin
|
41
|
-
yield
|
42
|
-
ensure
|
43
|
-
$stdout = original_stdout
|
44
|
-
end
|
45
|
-
fake.string
|
46
|
-
end
|
47
|
-
|
48
|
-
def capture_stderr(&block)
|
49
|
-
original_stderr = $stderr
|
50
|
-
$stderr = fake = StringIO.new
|
51
|
-
begin
|
52
|
-
yield
|
53
|
-
ensure
|
54
|
-
$stderr = original_stderr
|
55
|
-
end
|
56
|
-
fake.string
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
Bacon::Context.send :include, Helpers
|