Prekin CircleCI

Prekin

What is Prekin?

Naming

  • Prekin means PREMIUM FRIDAY
    • kin means FRIDAY (kin-yo-bi) in Japanese
    • So PREmium KIN-yo-bi is Prekin

Webpage

Installation

Add this line to your application's Gemfile:

gem 'prekin'

And then execute:

$ bundle

Or install it yourself as:

$ gem install prekin

Usage

1. require

require 'prekin'

2. call

2-1. Time class

Time.local(2020, 10, 30, 0, 0, 0).prekin? #=> true

2-2. Date class

Date.new(2020, 10, 30).prekin? #=> true

2-3. DateTime class

DateTime.new(2020, 10, 30, 0, 0, 0, '+09:00').prekin? #=> true

2-4. String class

'2020/10/30 00:00:00 +09:00'.prekin? #=> true

Note

  • This gem overwrites Time, Date, DateTime and String class.
    • So if you use Time, Date, DateTime and String class in your code, you should be careful.

License

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