2012-09-11 19:11:27 -04:00
|
|
|
1.1.0
|
|
|
|
- Objects are no longer recursively formatted by default. Reenable by using :raw => true option.
|
|
|
|
- ap(object) now returns nil when running under IRB or Pry
|
|
|
|
- Added support for Mongoid 3 and Moped (Nikolaj Nikolajsen)
|
|
|
|
- Improved formatting of MongoMapper objects (George .)
|
|
|
|
- ActiveRecord::Relation now renders as array (Dan Lynn)
|
|
|
|
- Formatting BigDecimal no longer looses precision (Evan Senter)
|
|
|
|
- Added AwesomePrint.irb! and AwesomePrint.pry! convenience methods
|
|
|
|
- Fixed conflict with the colorize gem
|
|
|
|
- Misc tweaks and bug fixes
|
|
|
|
|
2011-12-20 23:04:07 -05:00
|
|
|
1.0.2
|
|
|
|
- Added formatting of Mongoid documents (Adam Doppelt)
|
|
|
|
- ActiveRecord objects display attributes only. Use :raw => true to display the entire object
|
|
|
|
- ActiveSupport::Date objects get formatted as regular Date
|
|
|
|
- Rails.logger.ap colorizes output based on ActiveSupport::LogSubscriber.colorize_logging (default is true)
|
|
|
|
- Improved formatting of methods array
|
|
|
|
|
2011-11-30 00:16:05 -05:00
|
|
|
1.0.1
|
|
|
|
- Updated repo tags for Rubygems.org
|
|
|
|
|
2011-11-29 23:39:55 -05:00
|
|
|
1.0.0 Thanksgiving edition
|
2011-06-02 01:51:45 -04:00
|
|
|
- Added ability to format *arbitrary* Ruby object
|
|
|
|
- Added :limit option to limit large output for arrays and hashes (Andrew Horsman)
|
2011-11-29 23:26:00 -05:00
|
|
|
- Improved HTML formatting when :html => true (Daniel Johnson)
|
|
|
|
- Added Mongoid extension (Adam Doppelt)
|
|
|
|
- Added Nokogiri extension (Adam Doppelt)
|
|
|
|
- Removed Jeweler gem dependency
|
2011-06-02 01:51:45 -04:00
|
|
|
|
2011-05-13 18:10:06 -04:00
|
|
|
0.4.0
|
|
|
|
- 'ap object' now returns the object (Stephan Hagemann)
|
|
|
|
- Added :html => true option to enable HTML colors rather that ANSI (ex. Sinatra templates)
|
|
|
|
- Added AwesomePrint.force_colors! to allow color output on demand (Andrew O'Brien)
|
|
|
|
- Added MongoMapper formatter mixin (Elpizo Choi)
|
|
|
|
- Fixed formatting of methods array when object#method is overridden
|
|
|
|
- Fixed potential stack errors by checking whether AwesomePrint is already loaded
|
|
|
|
- Improved Ruby 1.8.6 and 1.8.7 compatibility
|
|
|
|
- Improved Windows compatibility (Viktar Basharymau)
|
|
|
|
|
2011-02-03 01:43:55 -05:00
|
|
|
0.3.2
|
|
|
|
- Make sure Rails mixins get loaded in Rails console when required from .irbrc
|
2011-01-27 22:51:17 -05:00
|
|
|
- Fixed an issue with classes that define their own #send method (ex: Socket)
|
|
|
|
- Fixed compatibility issue with Liquid gem that defines Module#liquid_methods
|
|
|
|
- Fixed hash spec for Ruby < 1.9 where order of hash keys is not guaranteed
|
2011-02-03 01:43:55 -05:00
|
|
|
- Added :sorted_hash_keys option to sort hash keys (Ed Ruder)
|
2011-01-27 22:51:17 -05:00
|
|
|
|
2010-11-13 12:49:24 -05:00
|
|
|
0.3.1 RubyConf X edition
|
|
|
|
- Fixed Ruby 1.8.6 compatibility issues (thanks, Tim!)
|
|
|
|
- Fixed stack overflow issue with Rails 2.3.x console
|
|
|
|
|
2010-11-06 19:01:38 -04:00
|
|
|
0.3.0
|
|
|
|
- Display object.methods and family in human readable format
|
|
|
|
- Objects inherited from Array, Hash, File, Dir, and Struct are shown as their base class
|
|
|
|
- Added option to suppress array index in output (Sean Gallagher)
|
|
|
|
- Updated README on how to set up ~/.irbrc for MacRuby (Eloy Duran)
|
|
|
|
- Specs pass 100% with Ruby 1.8.7/RSpec 1.3 and Ruby 1.9.2/RSpec 2.0
|
|
|
|
|
2010-06-03 22:53:47 -04:00
|
|
|
0.2.1
|
|
|
|
- ap can now be used within Rails templates (ex. <%= ap object %>)
|
|
|
|
- Added support for printing Struct
|
|
|
|
|
2010-05-06 00:30:00 -04:00
|
|
|
0.2.0
|
|
|
|
- Added support for logger.ap (including Rails logger)
|
2010-05-06 01:23:18 -04:00
|
|
|
- Added support for HashWithIndifferentAccess from ActiveSupport
|
2010-05-06 00:30:00 -04:00
|
|
|
- ap now works with scripts that use ActiveRecord/ActiveSupport outside Rails
|
|
|
|
- ap now correctly shows file and directory names with fancy characters (shell escape)
|
|
|
|
|
2010-04-08 23:40:38 -04:00
|
|
|
0.1.4
|
|
|
|
- Format BigDecimal and Rational objects as Float scalars
|
|
|
|
- Explicit options parameter can override custom defaults
|
|
|
|
- Custom defaults are not interfering when running specs
|
|
|
|
- Custom defaults now work correctly with Ruby 1.9.x
|
|
|
|
|
2010-04-08 00:31:21 -04:00
|
|
|
0.1.3
|
|
|
|
- Added support for setting custom defaults in ~/.aprc
|
|
|
|
|
|
|
|
0.1.2
|
|
|
|
- Correctly handle empty arrays and hashes
|
|
|
|
- Use alias_method instead of alias (fixes non-tty method aliasing)
|
|
|
|
- Added awesome_inspect method
|
|
|
|
|
|
|
|
0.1.1
|
|
|
|
- Added support for tableless ActiveRecord models
|
|
|
|
- Left align hash keys if @options[:indent] is negative
|
|
|
|
|
|
|
|
0.1.0
|
|
|
|
- Initial Release.
|
|
|
|
|