Sha256: ab637cd41d3b8ded8ab3b846bd7c7520d80add01bce33caf6fe55e3024338e54

Contents?: true

Size: 450 Bytes

Versions: 7

Compression:

Stored size: 450 Bytes

Contents

module LatoCore

  class Elements::Icon::Cell < Cell

    @@requested_args = [:name]

    @@default_args = {}

    def initialize(args = {})
      @args = validate_args(
        args: args,
        requested_args: @@requested_args,
        default_args: @@default_args
      )

      set_conditions
    end

    def show
      render 'show.html'
    end

    private

      def set_conditions
        # set conditional variables
      end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
lato_core-2.2.2 app/cells/lato_core/elements/icon/cell.rb
lato_core-2.2.0 app/cells/lato_core/elements/icon/cell.rb
lato_core-2.1.4 app/cells/lato_core/elements/icon/cell.rb
lato_core-2.1.3 app/cells/lato_core/elements/icon/cell.rb
lato_core-2.1.2 app/cells/lato_core/elements/icon/cell.rb
lato_core-2.1.1 app/cells/lato_core/elements/icon/cell.rb
lato_core-2.1 app/cells/lato_core/elements/icon/cell.rb