Sha256: 92d7268b63aeab9955fc39bddee6177e99fee4649cfc18ab83bd338a4f3e5c2b
Contents?: true
Size: 326 Bytes
Versions: 14
Compression:
Stored size: 326 Bytes
Contents
# encoding: UTF-8 # DSL for building actions module Factor module Connector class ActionBuilder def initialize(id, &block) @id = id.to_s @start = block end def build ad = ActionDefinition.new ad.id = @id ad.start = @start ad end end end end
Version data entries
14 entries across 14 versions & 1 rubygems