Sha256: 239db4a3d326fdd7ac933fc72f1095eaf69ffd1de1a66cdf49660c9a5b4277b2
Contents?: true
Size: 513 Bytes
Versions: 39
Compression:
Stored size: 513 Bytes
Contents
# TypeProf: A type analysis tool for Ruby code based on abstract interpretation ## Synopsis ```sh gem install typeprof typeprof app.rb ``` ## Demo ```rb # test.rb def foo(x) if x > 10 x.to_s else nil end end foo(42) ``` ``` $ typeprof test.rb # Classes class Object def foo : (Integer) -> String? end ``` ## Documentation [English](doc/doc.md) / [日本語](doc/doc.ja.md) ## Playground You can try typeprof gem on the Web via the URL below. https://mame.github.io/typeprof-playground/
Version data entries
39 entries across 39 versions & 1 rubygems