Make Pry::Pager a module

This commit is contained in:
Ryan Fitzgerald 2013-11-02 18:46:01 -07:00
parent 394dd52609
commit 8b0fe8930f
1 changed files with 1 additions and 1 deletions

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