Sha256: 4216e72ae66662c6fe34aa5ea63d82dc381554df40b5f5c8cb57e31896661a25

Contents?: true

Size: 440 Bytes

Versions: 9

Compression:

Stored size: 440 Bytes

Contents

class Mustache

  # A ContextMiss is raised whenever a tag's target can not be found
  # in the current context if `Mustache#raise_on_context_miss?` is
  # set to true.
  #
  # For example, if your View class does not respond to `music` but
  # your template contains a `{{music}}` tag this exception will be raised.
  #
  # By default it is not raised. See Mustache.raise_on_context_miss.
  #
  class ContextMiss < RuntimeError;  end

end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
zine_brewer-1.5.0 vendor/bundle/ruby/2.7.0/gems/mustache-1.1.1/lib/mustache/context_miss.rb
zine_brewer-1.3.0 vendor/bundle/ruby/2.7.0/gems/mustache-1.1.1/lib/mustache/context_miss.rb
mustache-1.1.1 lib/mustache/context_miss.rb
mustache-1.1.0 lib/mustache/context_miss.rb
mustache-1.0.5 lib/mustache/context_miss.rb
mustache-1.0.3 lib/mustache/context_miss.rb
mustache-1.0.2 lib/mustache/context_miss.rb
mustache-1.0.1 lib/mustache/context_miss.rb
mustache-1.0.0 lib/mustache/context_miss.rb