railslove/cmxl

View on GitHub
lib/cmxl/fields/entry_date.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cmxl
  module Fields
    class EntryDate < Field
      self.tag = 13
      self.parser = DATE

      def date
        to_date(source)
      end
    end
  end
end