Sha256: 89e022d02f2b4c703bde62c83a317583cb8937aaada583f96fd0f6536373ddc7
Contents?: true
Size: 428 Bytes
Versions: 14
Compression:
Stored size: 428 Bytes
Contents
module Expressir module Model module Statements class Case < ModelElement attr_accessor :expression attr_accessor :actions attr_accessor :otherwise_statement def initialize(options = {}) @expression = options[:expression] @actions = options.fetch(:actions, []) @otherwise_statement = options[:otherwise_statement] end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems