Copyright (c) 2010-2011 Michael Dvorkin
Awesome Print is freely distributable under the terms of MIT license. See LICENSE file or www.opensource.org/licenses/mit-license.php
Format ActiveRecord class object.
# File lib/ap/mixin/active_record.rb, line 43 def awesome_active_record_class(object) return object.inspect if !defined?(ActiveSupport::OrderedHash) || !object.respond_to?(:columns) data = object.columns.inject(ActiveSupport::OrderedHash.new) do |hash, c| hash[c.name.to_sym] = c.type hash end "class #{object} < #{object.superclass} " << awesome_hash(data) end
Format ActiveRecord instance object.
# File lib/ap/mixin/active_record.rb, line 31 def awesome_active_record_instance(object) return object.inspect if !defined?(ActiveSupport::OrderedHash) data = object.class.column_names.inject(ActiveSupport::OrderedHash.new) do |hash, name| hash[name.to_sym] = object.send(name) if object.has_attribute?(name) || object.new_record? hash end "#{object} " + awesome_hash(data) end
Add ActiveRecord class names to the dispatcher pipeline.
# File lib/ap/mixin/active_record.rb, line 15 def printable_with_active_record(object) printable = printable_without_active_record(object) return printable if !defined?(ActiveRecord::Base) if printable == :self if object.is_a?(ActiveRecord::Base) printable = :active_record_instance end elsif printable == :class and object.ancestors.include?(ActiveRecord::Base) printable = :active_record_class end printable end
Generated with the Darkfish Rdoc Generator 2.