r7kamura/chrono

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

Summary

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

      def range
        1..31
      end

      def wildcards
        ['L']
      end
    end
  end
end