All Versions
24
Latest Version
Avg Release Cycle
106 days
Latest Release
759 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