Feature #8601
closedWin32API.rb long life plan
Description
Win32API.rb sits on ext/dl/win32/lib in the source tree.
But DL is deprecated on Ruby 2.0.1, so I'd like to move it from ext/dl/win32/lib to ext/win32/lib because the library is fundamental for Win32 platform.
Also it's required to fit Fiddler.
Attachment is the patched version of Win32API.rb for both DL and Fiddle based on mirich (http://d.hatena.ne.jp/mirichi/20130629/p1).
Files
Updated by vo.x (Vit Ondruch) over 11 years ago
Wouldn't it be better to move it out of StdLib into separate gem?
Updated by arton (Akio Tajima) over 11 years ago
No. Many of Windows users use ruby on enterprise environment that is disconnected from the network. So pre-installed library is required especially fundamentals such as Win32API.
Updated by nobu (Nobuyoshi Nakada) over 11 years ago
And lib/rubygems/user_interaction.rb and lib/securerandom.rb depend on it.
Updated by nobu (Nobuyoshi Nakada) over 11 years ago
lib/rubygems/user_interaction.rb has code to use io/console already.
# Bad habit branching by the version string...
Updated by luislavena (Luis Lavena) over 11 years ago
- Category set to lib
- Status changed from Open to Assigned
- Assignee set to usa (Usaku NAKAMURA)
- Target version set to 2.1.0
Hello Arton,
In rb-readline project we used DL be able to access Windows API due the warning/removal of Win32API.rb after 2.0
Park Heesob wrote some wrapper on top of DL, and a few days ago we received a pull request that uses Fiddle:
https://github.com/luislavena/rb-readline/pull/90
I would love get this sorted out in Ruby itself so we don't have to fake it.
Assigning to Usa for final decision.
Thank you.
Updated by usa (Usaku NAKAMURA) over 11 years ago
Win32API.rb should be removed at 2.1.0.
Updated by luislavena (Luis Lavena) over 11 years ago
usa (Usaku NAKAMURA) wrote:
Win32API.rb should be removed at 2.1.0.
Hello usa,
This doesn't go against what nobu and arton said?
I can modify both RubyGems and SecureRandom to use Fiddle (for newer versions) but not sure about the enterprise environments that have no access to gems.
Thank you.
Updated by hsbt (Hiroshi SHIBATA) almost 11 years ago
- Target version changed from 2.1.0 to 2.2.0
Updated by ngoto (Naohisa Goto) over 10 years ago
- Related to Feature #5458: DL should be removed added
Updated by usa (Usaku NAKAMURA) about 7 years ago
- Assignee changed from usa (Usaku NAKAMURA) to windows
Updated by naruse (Yui NARUSE) almost 7 years ago
- Target version deleted (
2.2.0)
Updated by hsbt (Hiroshi SHIBATA) almost 3 years ago
- Status changed from Assigned to Closed
Win32API.rb was removed from Ruby repo since Ruby 3.0 release.
The canonical repo is here: https://github.com/ruby/win32api.