This commit is contained in:
Conrad Irwin 2014-02-05 15:33:56 -08:00
parent a01265881d
commit 15d4a77353
5 changed files with 9 additions and 9 deletions

View File

@ -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)

View File

@ -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

View File

@ -1,4 +1,4 @@
module Pry::Command::Ls::Interrogateable
module Pry::Command::Ls::Interrogatable
private

View File

@ -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)

View File

@ -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)