¿Cómo redondeo un flotador a un número específico de dígitos significativos en Ruby?

Sería bueno tener un equivalente de R signif función en Ruby.

Por ejemplo

>> (11.11).signif(1)
10
>> (22.22).signif(2)
22
>> (3.333).signif(2)
3.3
>> (4.4).signif(3)
4.4 # It's usually 4.40 but that's OK. R does not print the trailing 0's
    # because it returns the float data type. For Ruby we want the same.
>> (5.55).signif(2)
5.6

Respuestas a la pregunta(14)

Su respuesta a la pregunta