Skip to content

FiscalYear is calculates half-year, quarter-year, and YTD figures.

License

Notifications You must be signed in to change notification settings

TsubasaKawajiri/fiscal_year

Repository files navigation

build badge

Maintainability Test Coverage

FiscalYear

FiscalYear is calculates half-year, quarter-year, and YTD figures. It can take in a year's numerical value or a year and month and return the results as a Range.

Additionally, it allows for the customization of the starting month of the fiscal period.

Installation

gem 'fiscal_year'

then,

bundle install

Usage

require 'fiscal_year'

FiscalYear.quarters
=> [[4, 5, 6], [7, 8, 9], [10, 11, 12], [1, 2, 3]]

date = Date.parse('2023/08/01')

# get current Half range
FiscalYear::Half.range_by(date)
=> Sat, 01 Apr 2023..Sat, 30 Sep 2023

# get current quarter range
FiscalYear::Quarter.range_by(date)
=> Sat, 01 Jul 2023..Sat, 30 Sep 2023

# get year to date
FiscalYear::YearToDate.range_by(date)
=> Sat, 01 Apr 2023..Thu, 31 Aug 2023

configure start month

  FiscalYear.configure do |config|
    config.start_month = 4
  end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/TsubasaKawajiri/fiscal_year. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the FiscalYear project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

About

FiscalYear is calculates half-year, quarter-year, and YTD figures.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published