From dc2298d0d6490b82584287c0c1e7f4c647f5d648 Mon Sep 17 00:00:00 2001 From: Robert Gleeson Date: Mon, 20 Jan 2014 09:20:28 +0100 Subject: [PATCH] move require of 'pry/indent' to pry.rb --- lib/pry.rb | 1 + lib/pry/pry_instance.rb | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pry.rb b/lib/pry.rb index 2edec674..9d698db0 100644 --- a/lib/pry.rb +++ b/lib/pry.rb @@ -188,3 +188,4 @@ require 'pry/pager' require 'pry/terminal' require 'pry/editor' require 'pry/rubygem' +require "pry/indent" diff --git a/lib/pry/pry_instance.rb b/lib/pry/pry_instance.rb index 50d73dc2..41912fa2 100644 --- a/lib/pry/pry_instance.rb +++ b/lib/pry/pry_instance.rb @@ -1,6 +1,4 @@ # -*- coding: utf-8 -*- -require "pry/indent" - ## # Pry is a powerful alternative to the standard IRB shell for Ruby. It # features syntax highlighting, a flexible plugin architecture, runtime