diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-09-03 10:46:58 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-09-03 10:46:58 +0000 |
commit | 1b126277edef6d2e9a5cd8d4113a98c74964338a (patch) | |
tree | 1e842715dc8e766e25528797f40a129463a32494 /ext/win32/lib | |
parent | afcabde71b0dd0034fc815015f1aeab63620d314 (diff) |
* ext/win32/lib/win32/registry.rb (Win32::Registry#values): added.
[Feature #7763] [ruby-core:51783]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32/lib')
-rw-r--r-- | ext/win32/lib/win32/registry.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/win32/lib/win32/registry.rb b/ext/win32/lib/win32/registry.rb index 16a0909388..6c678e49db 100644 --- a/ext/win32/lib/win32/registry.rb +++ b/ext/win32/lib/win32/registry.rb @@ -570,6 +570,15 @@ For detail, see the MSDN[http://msdn.microsoft.com/library/en-us/sysinfo/base/pr alias each each_value # + # return values as an array + # + def values + vals_ary = [] + each_value { |*, val| vals_ary << val } + vals_ary + end + + # # Enumerate subkeys. # # subkey is String which contains name of subkey. |