Sha256: 6c76ff77b270d3dcee427deed585b984ffbaa4d2268f4c361381a924121dbd99

Contents?: true

Size: 258 Bytes

Versions: 1

Compression:

Stored size: 258 Bytes

Contents

module Rung
  module Definition
    class Callback
      include ValueObject

      def initialize(action = nil, from_block: false)
        @action = action
        @from_block = from_block
      end

      attr_reader :action, :from_block
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rung-0.1 lib/rung/definition/callback.rb