aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/rewindable_input.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/rewindable_input.rb')
-rw-r--r--actionpack/lib/action_controller/rewindable_input.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/rewindable_input.rb b/actionpack/lib/action_controller/rewindable_input.rb
index 296d8aed22..058453ea68 100644
--- a/actionpack/lib/action_controller/rewindable_input.rb
+++ b/actionpack/lib/action_controller/rewindable_input.rb
@@ -15,15 +15,19 @@ module ActionController
@io.rewind
end
+ def string
+ @string
+ end
+
def method_missing(method, *args, &block)
@io.send(method, *args, &block)
end
private
def read_original_io
- unless @str
- @str = @io.read
- @io = StringIO.new(@str)
+ unless @string
+ @string = @io.read
+ @io = StringIO.new(@string)
end
end
end