Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ordered_week

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ordered_week

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

OrderedWeek

A class useful for when it makes sense to think of a week, conceptually, as a single object. An example, at least my use case, would be an app tracking pay periods. It makes sense to explicitly label a beginning marker.

Installation

Add this line to your application's Gemfile:

gem 'ordered_week'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ordered_week

Usage

You now have access to the OrderedWeek class, which returns an array of Dates, which includes an optionally given Date (defaults to including current day). Note: The following examples assume the current date to be Sunday, 2014-02-16.

OrderedWeek.new
#=> [2014-02-10, 2014-02-11, ... ]

These collections have a concept of where they start and end.

OrderedWeek.new.start_date
#=> #<Date: 2014-02-10 ((2456699j,0s,0n),+0s,2299161j)>
OrderedWeek.new.end_date
#=> #<Date: 2014-02-16 ((2456705j,0s,0n),+0s,2299161j)>

By default, the "week" starts on Monday. You can change this by setting the class option. Note: The following example shows that by resetting the start date for the week, a completely different week can be returned.

OrderedWeek.start_day
#=> :monday
OrderedWeek.start_day = :sunday
#=> :sunday
OrderedWeek.new.start_date
#=> #<Date: 2014-02-16 ((2456705j,0s,0n),+0s,2299161j)>

Don't worry though! If you accidentally pass an argument that isn't the symbol of a valid day of the week, nothing changes

OrderedWeek.start_day
#=> :monday
OrderedWeek.start_day = :bad
#=> :bad
OrderedWeek.start_day
#=> :monday

These objects respond to the following methods

OrderedWeek.new.monday
#=> #<Date: 2014-02-10 ((2456699j,0s,0n),+0s,2299161j)>

...

OrderedWeek.new.sunday
#=> #<Date: 2014-02-16 ((2456705j,0s,0n),+0s,2299161j)>

OrderedWeek.new.to_a
#=> [#<Date: 2014-02-10 ((2456699j,0s,0n),+0s,2299161j)>, #<Date: 2014-02-11 ((2456700j,0s,0n),+0s,2299161j)>, ... ]

The objects are also enumerable, so feel free to modify your Dates however you need

OrderedWeek.new.map {|day| day.strftime("%F")}
#=> ["2014-02-10", "2014-02-11", ... ]

Contributing

  1. Fork it ( http://github.com//ordered_week/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 17 Feb 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc