I am new in ruby on rails. I am migrating from php to ruby. Now I have some php projects which are being converted into ruby code.But How can I convert this switch code to ruby on rails 4? function ajax($command) {
    switch ($command) {
        case 'page_reload':
            $this->ajax_delete_entries_of_current_uid();
            break;
        case 'labchem_products':
            $this->ajax_labchem_products();
            break;
        case 'labchem_carts':
            $this->ajax_labchem_carts();
            break;
        case 'labchem_customers':
            $this->ajax_labchem_customers();
            break;
        case 'products_selected':
            $this->ajax_products_selected();
            break;
        case 'products_total':
            $this->ajax_products_total();
            break;
        case 'products_delivery_info':
            $this->ajax_products_delivery_info();
            break;
        case 'labchem_orders':
            $this->ajax_labchem_orders();
            break;
        default: break;
    }
} 
 
    