Sha256: f7321690c3ccdae6b7e93208cdb9180e089c597701ebb02676ba3b5c4cbf0928
Contents?: true
Size: 652 Bytes
Versions: 7
Compression:
Stored size: 652 Bytes
Contents
# This file is part of the ruby-dbus project # Copyright (C) 2016 Martin Vidner # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License, version 2.1 as published by the Free Software Foundation. # See the file "COPYING" for the exact licensing terms. module DBus class ApiOptions # https://github.com/mvidner/ruby-dbus/issues/30 attr_accessor :proxy_method_returns_array A0 = ApiOptions.new A0.proxy_method_returns_array = true A0.freeze A1 = ApiOptions.new A1.proxy_method_returns_array = false A1.freeze CURRENT = A1 end end
Version data entries
7 entries across 7 versions & 1 rubygems