Sha256: 34f09d736232c326722197e935c4b5acd9e2b6e15f9f8b18743e426f3fc51194
Contents?: true
Size: 466 Bytes
Versions: 9
Compression:
Stored size: 466 Bytes
Contents
# $meta_info indicate what and how to do. class MetaInfo include Singleton attr_accessor :lang, :opts, :mode def _load # compiles into R as default. lang = :r end # TODO: YAML.load_file("./lib/hilbert/utils/langs.yml")['langs'] def langs_hash { r: 'R', ruby: 'Ruby', python: 'Pyhton', haskell: 'Haskell', scala: 'Scala', js: 'Javascript' } end def lang_str LANGS_HASH[@lang.to_s] end end
Version data entries
9 entries across 9 versions & 1 rubygems