Sha256: 5b29cbd461a3fb9a3fdfaf4f9924461f2adf11437780631ad5d4a4717a54574e
Contents?: true
Size: 419 Bytes
Versions: 3
Compression:
Stored size: 419 Bytes
Contents
module Expressir module Model module Statements class Case attr_accessor :expression attr_accessor :actions attr_accessor :otherwise_statement def initialize(options = {}) @expression = options[:expression] @actions = options[:actions] @otherwise_statement = options[:otherwise_statement] end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems