Sha256: 1b973000e56f1a4a5df9b49f6bc1553a5f161905e99925ab2ef077a4cad26cb5

Contents?: true

Size: 1.87 KB

Versions: 5

Compression:

Stored size: 1.87 KB

Contents

# encoding: UTF-8

class PryRails::ShowModels < Pry::ClassCommand
  match "show-models"
  group "Rails"
  description "Show all models."

  def options(opt)
    opt.banner unindent <<-USAGE
      Usage: show-models

      show-models displays the current Rails app's models.
    USAGE

    opt.on :G, "grep", "Filter output by regular expression", :argument => true
  end

  def process
    Rails.application.eager_load!

    @formatter = PryRails::ModelFormatter.new

    display_activerecord_models
    display_mongoid_models
  end

  def display_activerecord_models
    return unless defined?(ActiveRecord::Base)

    models = ActiveRecord::Base.descendants

    models.sort_by(&:to_s).each do |model|
      print_unless_filtered @formatter.format_active_record(model)
    end
  end

  def display_mongoid_models
    return unless defined?(Mongoid::Document)

    models = []

    ObjectSpace.each_object do |o|
      # If this is deprecated, calling any methods on it will emit a warning,
      # so just back away slowly.
      next if ActiveSupport::Deprecation::DeprecationProxy === o

      is_model = false

      begin
        is_model = o.class == Class && o.ancestors.include?(Mongoid::Document)
      rescue
        # If it's a weird object, it's not what we want anyway.
      end

      models << o if is_model
    end

    models.sort_by(&:to_s).each do |model|
      print_unless_filtered @formatter.format_mongoid(model)
    end
  end

  def print_unless_filtered(str)
    if opts.present?(:G)
      return unless str =~ grep_regex
      str = colorize_matches(str) # :(
    end
    output.puts str
  end

  def colorize_matches(string)
    if Pry.color
      string.to_s.gsub(grep_regex) { |s| "\e[7m#{s}\e[27m" }
    else
      string
    end
  end

  def grep_regex
    @grep_regex ||= Regexp.new(opts[:G], Regexp::IGNORECASE)
  end
end

PryRails::Commands.add_command PryRails::ShowModels

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
pry-rails-0.3.11 lib/pry-rails/commands/show_models.rb
pry-rails-0.3.10 lib/pry-rails/commands/show_models.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/pry-rails-0.3.9/lib/pry-rails/commands/show_models.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/pry-rails-0.3.9/lib/pry-rails/commands/show_models.rb
pry-rails-0.3.9 lib/pry-rails/commands/show_models.rb