mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
22de2030c5
symbol in return value of methods. * test/win32ole/test_win32ole.rb ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
33 lines
602 B
Ruby
33 lines
602 B
Ruby
begin
|
|
require 'win32ole.so'
|
|
rescue LoadError
|
|
# do nothing
|
|
end
|
|
|
|
if defined?(WIN32OLE)
|
|
# WIN32OLE
|
|
class WIN32OLE
|
|
|
|
#
|
|
# By overriding Object#methods, WIN32OLE might
|
|
# work well with did_you_mean gem.
|
|
# This is experimental.
|
|
#
|
|
# require 'win32ole'
|
|
# dict = WIN32OLE.new('Scripting.Dictionary')
|
|
# dict.Ade('a', 1)
|
|
# #=> Did you mean? Add
|
|
#
|
|
def methods(*args)
|
|
super + ole_methods_safely.map(&:name).map(&:to_sym)
|
|
end
|
|
|
|
private
|
|
|
|
def ole_methods_safely
|
|
ole_methods
|
|
rescue WIN32OLEQueryInterfaceError
|
|
[]
|
|
end
|
|
end
|
|
end
|