armandofox/audience1st

View on GitHub
lib/core_extensions/time/rounded_to.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module CoreExtensions
  module Time
    module RoundedTo
      def rounded_to(component)
        self.change(component => 0).round(0)
      end
    end
  end
end