Sha256: 8b473432f5efe7d31798520f813175e156b55830a9047d28487fe8c570777912
Contents?: true
Size: 1.23 KB
Versions: 40
Compression:
Stored size: 1.23 KB
Contents
# Copyright (C) 2019 Ruby-GNOME Project Team # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA module GObjectIntrospection class RegisteredTypeInfo def try_convert(value) return nil if value.nil? type = gtype return value if type == GLib::Type::NONE klass = type.to_class case value when klass value else if klass.respond_to?(:try_convert) klass.try_convert(value) else nil end end end def description "#{gtype.to_class}(#{gtype.name})" end end end
Version data entries
40 entries across 40 versions & 1 rubygems