All Versions
24
Latest Version
Avg Release Cycle
106 days
Latest Release
1651 days ago

Changelog History
Page 3

  • v0.3.1 Changes

    July 11, 2014

    ๐Ÿ›  Fixed

    • Obtain a year range array without prioviding a start date.
  • v0.3.0 Changes

    July 11, 2014

    โž• Added

    • โž• Add Yardoc to Reporting module.
    • ๐Ÿ‘ Allow reporting month and year time ranges without a start date.

    ๐Ÿ”„ Changed

    • ๐Ÿ”ง Use ruby18 hash syntax for configuration example in README.

    โœ‚ Removed

    • โœ‚ Removed DoubleEntry::describe and DoubleEntry::Line#description methods.
  • v0.2.0 Changes

    June 28, 2014

    โž• Added

    • โž• Added a configuration class to define valid accounts and transfers.

      DoubleEntry.configure do |config|
        config.define_accounts do |accounts|
          accounts.define(identifier: :savings,  positive_only: true)
          accounts.define(identifier: :checking)
        end
      
        config.define_transfers do |transfers|
          transfers.define(from: :checking, to: :savings,  code: :deposit)
          transfers.define(from: :savings,  to: :checking, code: :withdraw)
        end
      end
      

    ๐Ÿ”„ Changed

    • ๐Ÿšš Move reporting classes into the DoubleEntry::Reporting namespace. Mark this module as @api private: internal use only.
  • v0.1.0 Changes

    June 20, 2014

    โž• Added

    • ๐Ÿš€ Library released as Open Source!

    ๐Ÿš€ [Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0.beta5...HEAD