Sha256: fd245073c45452080daea67d6fd4a7c629ef592603df04f4ff6363684bb5fa1e
Contents?: true
Size: 893 Bytes
Versions: 1
Compression:
Stored size: 893 Bytes
Contents
# This is free and unencumbered software released into the public domain. require_relative '../exporter' module FFIDB::Exporters ## # Code generator for the Ruby programming language (using FFI). # # @see https://github.com/ffi/ffi/wiki class Ruby < FFIDB::Exporter TYPE_MAP = ::YAML.load(File.read(File.expand_path("../../../etc/mappings/ruby.yaml", __dir__))) .transform_values(&:to_sym) .freeze def finish puts self.render_template('ruby.erb') end protected ## # @param [FFIDB::Type] c_type # @return [#inspect] def param_type(c_type) case when c_type.enum? then :int when c_type.array? then [self.param_type(c_type.array_type), c_type.array_size] else TYPE_MAP[c_type.to_s] || TYPE_MAP['void *'] end end alias_method :struct_type, :param_type end # Ruby end # FFIDB::Exporters
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffidb-0.12.0 | lib/ffidb/exporters/ruby.rb |