Sha256: 623f2e0122325e33478ef39e0e20c4c4a86631865b1ad01aa73e965c293aa4a2
Contents?: true
Size: 765 Bytes
Versions: 21
Compression:
Stored size: 765 Bytes
Contents
class AbstractConfigRuntimeFactory def clr(config_name = "default") raise NotImplementedError, "method not implemented" end def jvm(config_name = "default") raise NotImplementedError, "method not implemented" end def netcore(config_name = "default") raise NotImplementedError, "method not implemented" end def perl(config_name = "default") raise NotImplementedError, "method not implemented" end def ruby(config_name = "default") raise NotImplementedError, "method not implemented" end def nodejs(config_name = "default") raise NotImplementedError, "method not implemented" end def python(config_name = "default") raise NotImplementedError, "method not implemented" end end
Version data entries
21 entries across 21 versions & 1 rubygems