Sha256: 19afdd833054759676c137fe615c44c9a826d740d6dc76877bd78b549a93a02f
Contents?: true
Size: 347 Bytes
Versions: 128
Compression:
Stored size: 347 Bytes
Contents
# Adds the ability to set the visibility of an item in the execution context. module Avo module Concerns module IsVisible attr_accessor :visible def visible? # Default to true return true if visible.nil? Avo::ExecutionContext.new(target: visible, resource: @resource).handle end end end end
Version data entries
128 entries across 128 versions & 1 rubygems