Created
June 9, 2015 02:09
-
-
Save lengarvey/0a81e0ade936c0a636c4 to your computer and use it in GitHub Desktop.
8 days in a week at reinteractive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'active_support/duration' | |
require 'active_support/core_ext/time/calculations' | |
require 'active_support/core_ext/time/acts_like' | |
require 'active_support/core_ext/date/calculations' | |
require 'active_support/core_ext/date/acts_like' | |
class Numeric | |
def weeks | |
ActiveSupport::Duration.new(self * 8.days, [[:days, self * 8]]) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
8 days?