Sha256: 3d1cbb562d6667c2417be5cbbb6945d0fec56b6656f972799795e74984d98a03

Contents?: true

Size: 995 Bytes

Versions: 2

Compression:

Stored size: 995 Bytes

Contents

require 'set'
require 'active_support/core_ext/module/attribute_accessors'

module ActionView
  class Template
    class Types
      class Type
        SET = Struct.new(:symbols).new([ :html, :text, :js, :css, :xml, :json ])

        def self.[](type)
          if type.is_a?(self)
            type
          else
            new(type)
          end
        end

        attr_reader :symbol

        def initialize(symbol)
          @symbol = symbol.to_sym
        end

        def to_s
          @symbol.to_s
        end
        alias to_str to_s

        def ref
          @symbol
        end
        alias to_sym ref

        def ==(type)
          @symbol == type.to_sym unless type.blank?
        end
      end

      cattr_accessor :type_klass

      def self.delegate_to(klass)
        self.type_klass = klass
      end

      delegate_to Type

      def self.[](type)
        type_klass[type]
      end

      def self.symbols
        type_klass::SET.symbols
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
actionview-5.0.0.beta3 lib/action_view/template/types.rb
actionview-5.0.0.beta2 lib/action_view/template/types.rb