1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Make Pry::Pager a module

This commit is contained in:
Ryan Fitzgerald 2013-11-02 18:46:01 -07:00
parent 394dd52609
commit 8b0fe8930f

View file

@ -3,7 +3,7 @@ require 'pry/terminal'
# A Pry::Pager is an IO-like object that accepts text and either prints it
# immediately, prints it one page at a time, or streams it to an external
# program to print one page at a time.
class Pry::Pager
module Pry::Pager
class StopPaging < StandardError
end