Being that Ruby is a language with purely dynamic types, I'm never quite sure what level of expectation I should have for the types passed to my methods. For example, if my method only functions when passed an Integer, should I be actively checking to make sure that's the case or should I just allow a type exception in such a case?
Additionally, when it comes to writing design documents around Ruby code, what would be the proper way to specify what types a method should operate on? Javadocs (though not typically used for design documents) for example specify exactly what types a method will operate on since the language itself is statically typed, but it seems that the Ruby docs are consistently very imprecise about the pre- and post-conditions of methods. Is there a standard practice for specifying this kind of format in Ruby?
Interesting question!
Type-safety
Java and Ruby are pretty much diametrically opposed. In Ruby, you can do :
So you can pretty much forget any type-safety you know from Java.
For your first question, you could either :
my_method(array.size)
)to_i
on the input.(1..3.5).to_a #=> [1, 2, 3]
,'a'*2.5 #=> 'aa'
NoMethodError: undefined method 'to_i' for object ...
, and you could try to deal with it (e.g. withrescue
)Documentation
The first step of documenting the expected input and output of your methods would be to define the method at the correct place (a Class or Module) and use appropriate method names :
is_prime?
should return a booleanis_prime?
should be defined inInteger
Otherwise, YARD supports types in documentation :