Method: MrubyBridgeSignaturePluginModule#set_auto_exclude

Defined in:
lib/tecsgen/plugin/lib/MrubyBridgeSignaturePluginModule.rb

#set_auto_exclude(rhs) ⇒ Object

プラグイン引数 auto_exclude



268
269
270
271
272
273
274
275
276
# File 'lib/tecsgen/plugin/lib/MrubyBridgeSignaturePluginModule.rb', line 268

def set_auto_exclude rhs
  if rhs == "false" then
    @b_auto_exclude = false
  elsif rhs == "true" then
    @b_auto_exclude = true     # auto_exclude = true by default 
  else
    cdl_warning( "MRB9999 auto_exclude: unknown rhs value ignored. specify true or false" )
  end
end