r7kamura/chrono

View on GitHub
lib/chrono/fields/hour.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Chrono
  module Fields
    class Hour < Base
      private

      def range
        0..23
      end
    end
  end
end