Sha256: 7f385b1a7c4e2d9a8b39d8ade4445717ad89fd33cceab92d222eddfd45cc29a7

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

module CSL  
  class Locale
    
    # A localized Date comprises a set of formatting rules for dates.
		class Date < Node
		  
		  attr_struct :form, *Schema.attr(:font, :delimiter, :textcase)
		  attr_children :'date-part'
		  
		  alias parts  date_part
		  alias locale parent
		
		  def initialize(attributes = {})
		    super(attributes)
		    children[:'date-part'] = []
		
		    yield self if block_given?
		  end
	  
			def added_to(node)
				raise ValidationError, "parent must be locale node: was #{node.inspect}" unless node.is_a?(Locale)
			end
			
      %w{ text numeric }.each do |type|
        define_method("#{type}?") { attributes.form == type }
      end
      
		end

		# DatePart represent the localized formatting options for an individual
		# date part (day, month, or year).
		class DatePart < Node
      has_no_children    
      
      attr_struct :name, :form, :'range-delimiter',
        *Schema.attr(:affixes, :textcase, :font, :periods)

      %w{ day month year }.each do |part|
        define_method("#{part}?") do
          attributes.name == part
        end
      end

		end
		
		
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
csl-1.0.0.pre1 lib/csl/locale/date.rb