From 15d4a773533f16fa8c02e478a6e9609739b137f2 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 5 Feb 2014 15:33:56 -0800 Subject: [PATCH] sp. --- lib/pry/commands/ls/constants.rb | 4 ++-- lib/pry/commands/ls/instance_vars.rb | 4 ++-- lib/pry/commands/ls/{interrogateable.rb => interrogatable.rb} | 2 +- lib/pry/commands/ls/methods.rb | 4 ++-- lib/pry/commands/ls/self_methods.rb | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) rename lib/pry/commands/ls/{interrogateable.rb => interrogatable.rb} (88%) diff --git a/lib/pry/commands/ls/constants.rb b/lib/pry/commands/ls/constants.rb index 58561547..48670088 100644 --- a/lib/pry/commands/ls/constants.rb +++ b/lib/pry/commands/ls/constants.rb @@ -1,10 +1,10 @@ -require 'pry/commands/ls/interrogateable' +require 'pry/commands/ls/interrogatable' class Pry class Command::Ls < Pry::ClassCommand class Constants < Pry::Command::Ls::Formatter - include Pry::Command::Ls::Interrogateable + include Pry::Command::Ls::Interrogatable def initialize(interrogatee, target, no_user_opts, opts) super(target) diff --git a/lib/pry/commands/ls/instance_vars.rb b/lib/pry/commands/ls/instance_vars.rb index c25789fe..23155686 100644 --- a/lib/pry/commands/ls/instance_vars.rb +++ b/lib/pry/commands/ls/instance_vars.rb @@ -1,10 +1,10 @@ -require 'pry/commands/ls/interrogateable' +require 'pry/commands/ls/interrogatable' class Pry class Command::Ls < Pry::ClassCommand class InstanceVars < Pry::Command::Ls::Formatter - include Pry::Command::Ls::Interrogateable + include Pry::Command::Ls::Interrogatable def initialize(interrogatee, no_user_opts, opts) @interrogatee = interrogatee diff --git a/lib/pry/commands/ls/interrogateable.rb b/lib/pry/commands/ls/interrogatable.rb similarity index 88% rename from lib/pry/commands/ls/interrogateable.rb rename to lib/pry/commands/ls/interrogatable.rb index 89b94d45..5904d1b4 100644 --- a/lib/pry/commands/ls/interrogateable.rb +++ b/lib/pry/commands/ls/interrogatable.rb @@ -1,4 +1,4 @@ -module Pry::Command::Ls::Interrogateable +module Pry::Command::Ls::Interrogatable private diff --git a/lib/pry/commands/ls/methods.rb b/lib/pry/commands/ls/methods.rb index a301b33e..9bc108ee 100644 --- a/lib/pry/commands/ls/methods.rb +++ b/lib/pry/commands/ls/methods.rb @@ -1,11 +1,11 @@ require 'pry/commands/ls/methods_helper' -require 'pry/commands/ls/interrogateable' +require 'pry/commands/ls/interrogatable' class Pry class Command::Ls < Pry::ClassCommand class Methods < Pry::Command::Ls::Formatter - include Pry::Command::Ls::Interrogateable + include Pry::Command::Ls::Interrogatable include Pry::Command::Ls::MethodsHelper def initialize(interrogatee, no_user_opts, opts) diff --git a/lib/pry/commands/ls/self_methods.rb b/lib/pry/commands/ls/self_methods.rb index 0756cf78..cd68b227 100644 --- a/lib/pry/commands/ls/self_methods.rb +++ b/lib/pry/commands/ls/self_methods.rb @@ -1,11 +1,11 @@ -require 'pry/commands/ls/interrogateable' +require 'pry/commands/ls/interrogatable' require 'pry/commands/ls/methods_helper' class Pry class Command::Ls < Pry::ClassCommand class SelfMethods < Pry::Command::Ls::Formatter - include Pry::Command::Ls::Interrogateable + include Pry::Command::Ls::Interrogatable include Pry::Command::Ls::MethodsHelper def initialize(interrogatee, no_user_opts, opts)