Sha256: 2db3004d3e66de6cabd1c4cbc38500b01507a0f0f14c60407bf4446ca155b0ba
Contents?: true
Size: 372 Bytes
Versions: 14
Compression:
Stored size: 372 Bytes
Contents
# frozen_string_literal: true module GirFFI module InfoExt # Extensions for GObjectIntrospection::IPropertyInfo needed by GirFFI module IPropertyInfo def getter_name name.tr("-", "_") end def setter_name "#{getter_name}=" end end end end GObjectIntrospection::IPropertyInfo.include GirFFI::InfoExt::IPropertyInfo
Version data entries
14 entries across 14 versions & 1 rubygems