You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
InstructionList::Experimenter.new( :experimenter => rand( 2 ** 32 ), :user_data => rand( 36**10 ).to_s( 36 ).unpack( "C" ) )
All classes reside under trema/instruction-list and a typical class looks like the following:
module Trema
module InstructionList
class InstructionActions < InstructionAccessor
array :actions, :presence => true, :validate_with => :check_actions
end
def check_actions actions, name
raise ArgumentError, "At least one action object must be specified for #{ name }" if actions.empty?
end
end
end
The following instructions should be created:
The text was updated successfully, but these errors were encountered: