Posts tagged ":ruby:contracts:functional:typing":
Type checking ruby with contracts
24 Okt 2015
Ruby is dynamically and strong typed programming language. In the most of the cases it gives you required level of type safety with minimal code. But if you want build more secure applications or you’re like static typing, then you need to check every variable or method for it’s type or class:
(...)