== 1.0.1 2011-03-15 * Fix bug exception when trying to edit a primitive method on MRI. * Allow customizing the method names added to every object. Either: * Call Looksee(:ls => new_name, :edit => new_name) * Set LOOKSEE_METHODS='ls=new_name edit=new_name' in your environment. == 1.0.0 2011-03-09 * New API. * old: lp(object, :private => true, :undefined => false).grep(/blah/) * new: object.ls :private, :noundefined, /blah/ * Configuration has changed accordingly. * old: Looksee.default_lookup_path_options = {:private => true, :undefined => false} * new: Looksee.default_specifiers = [:private, :noundefined] * Require 'looksee' instead of 'looksee/shortcuts'. For non-pollutiness, use "require 'looksee/clean'". * All methods are now listed by default. * Modules are now listed root class first. * Support for Ruby MRI 1.9, JRuby, and Rubinius. * Add Object#edit(METHOD), to open Object#METHOD in your text editor.