holywyvern/carbuncle

View on GitHub
gems/carbuncle-gui/mrblib/002_layout.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Carbuncle
  class GUI
    class Layout
      def render(_container)
        yield if block_given?
      end

      def apply(_widget); end
    end
  end
end