Class: Utopia::Content::SymbolicHash

Inherits:
Hash
  • Object
show all
Defined in:
lib/utopia/content/markup.rb

Instance Method Summary collapse

Instance Method Details

#[](key) ⇒ Object

Raises:

  • (KeyError)


30
31
32
33
# File 'lib/utopia/content/markup.rb', line 30

def [] key
	raise KeyError.new("attribute #{key} is a string, prefer a symbol") if key.is_a? String
	super key.to_sym
end

#[]=(key, value) ⇒ Object



35
36
37
# File 'lib/utopia/content/markup.rb', line 35

def []= key, value
	super key.to_sym, value
end

#fetch(key, *args, &block) ⇒ Object



39
40
41
42
43
# File 'lib/utopia/content/markup.rb', line 39

def fetch(key, *args, &block)
	key = key.to_sym
	
	super
end

#include?(key) ⇒ Boolean

Returns:

  • (Boolean)


45
46
47
48
49
# File 'lib/utopia/content/markup.rb', line 45

def include? key
	key = key.to_sym
	
	super
end