Sha256: 564b9ba8b77d0bf23a841c6ed5ec67bed12059662eb60ff268a1be85a177ba8b
Contents?: true
Size: 714 Bytes
Versions: 1
Compression:
Stored size: 714 Bytes
Contents
require "base_presenter/version" require "application_helper" class BasePresenter def initialize(object, template) @object = object @template = template end def self.initialize(object, template) @@object = object @@template = template end private def method_missing(*args, &block) @template.send(*args, &block) end def self.method_missing(*args, &block) @@template.send(*args, &block) end def self.presents(name) define_method(name) do @object end end # Return span with 'None given' when value is blank def handle_none(value) if value.present? yield else content_tag :span, "None given", class: "none" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
base_presenter-0.0.10 | lib/base_presenter.rb |