class Tml::Translator

Public Instance Methods

feature_enabled?(key) click to toggle source
# File lib/tml/translator.rb, line 38
def feature_enabled?(key)
  return false unless features
  hash_value(features, key)
end
inline?() click to toggle source
Calls superclass method
# File lib/tml/translator.rb, line 43
def inline?
  Tml.session.block_option(:inline) || super
end