Sha256: d0082f04ce62639c72638d0b8d83afdf895bf1f504a06c07a79c4636882b6460

Contents?: true

Size: 1.83 KB

Versions: 7

Compression:

Stored size: 1.83 KB

Contents

require 'formatador'

module Cistern::Formatter::Formatador
  def self.call(model)
    case model
    when Cistern::Collection then collection_inspect(model)
    when Cistern::Model then model_inspect(model)
    else model.inspect
    end
  end

  def self.model_inspect(model)
    Thread.current[:formatador] ||= Formatador.new
    data = "#{Thread.current[:formatador].indentation}<#{model.class.name}"
    Thread.current[:formatador].indent do
      unless model.class.attributes.empty?
        data << "\n#{Thread.current[:formatador].indentation}"
        data << model.class.attributes.map {|attribute| "#{attribute}=#{model.send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}")
      end
    end
    data << "\n#{Thread.current[:formatador].indentation}>"
    data
  end

  def self.collection_inspect(collection)
    Thread.current[:formatador] ||= Formatador.new
    data = "#{Thread.current[:formatador].indentation}<#{collection.class.name}\n"
    Thread.current[:formatador].indent do
      unless collection.class.attributes.empty?
        data << "#{Thread.current[:formatador].indentation}"
        data << collection.class.attributes.map {|attribute| "#{attribute}=#{send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}")
        data << "\n"
      end
      data << "#{Thread.current[:formatador].indentation}["
      unless collection.empty?
        data << "\n"
        Thread.current[:formatador].indent do
          data << collection.map {|member| member.inspect}.join(",\n")
          data << "\n"
        end
        data << Thread.current[:formatador].indentation
      end
      data << "]\n"
    end
    data << "#{Thread.current[:formatador].indentation}>"
    data
  end

  def table(attributes = nil)
    Formatador.display_table(self.map {|instance| instance.attributes}, attributes)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cistern-0.3.2 lib/cistern/formatter/formatador.rb
cistern-0.3.1 lib/cistern/formatter/formatador.rb
cistern-0.3.0 lib/cistern/formatter/formatador.rb
cistern-0.2.3 lib/cistern/formatter/formatador.rb
cistern-0.2.2 lib/cistern/formatter/formatador.rb
cistern-0.2.1 lib/cistern/formatter/formatador.rb
cistern-0.2.0 lib/cistern/formatter/formatador.rb