Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
require_relative "base"

module Administrate
  module Field
    class Date < Base
      def date
        I18n.localize(
          data.to_date,
          format: format,
        )
      end

      private

      def format
        options.fetch(:format, :default)
      end
    end
  end
end