[#68845] [Ruby trunk - Feature #11056] [PATCH] lib/net/*: use io/wait methods instead of IO.select — normalperson@...
Issue #11056 has been updated by Eric Wong.
3 messages
2015/04/11
[#68945] [Ruby trunk - Feature #11083] [Open] Gemify net-telnet — shibata.hiroshi@...
Issue #11083 has been reported by Hiroshi SHIBATA.
4 messages
2015/04/21
[#68951] Re: [Ruby trunk - Feature #11083] [Open] Gemify net-telnet
— Eric Wong <normalperson@...>
2015/04/21
shibata.hiroshi@gmail.com wrote:
[#69012] [Ruby trunk - Feature #11105] [Open] ES6-like hash literals — shugo@...
Issue #11105 has been reported by Shugo Maeda.
5 messages
2015/04/29
[ruby-core:68742] [Ruby trunk - Feature #11028] standalone running single file ( zipped archives of ruby code) running **without installation** using "gem install ..."
From:
zaxebo1@...
Date:
2015-04-03 11:52:51 UTC
List:
ruby-core #68742
Issue #11028 has been updated by zaxebo zaxebo.
On MS-Windows the zipped archive of ruby source code - can have two file extensions:
- ".rbz" will be launched by "ruby.exe" .
".rbz" will be registered in MS-Windows registry as ""Ruby ZIP Applications"
- ".rbzw" will be launched by "rubyw.exe".
".rbzw" will be registered in MS-Windows registry as ""Windowed Ruby ZIP Applications"
(This is in sync with python PEP proposal for .pyz and .pyzw file extensions of python)
----------------------------------------
Feature #11028: standalone running single file ( zipped archives of ruby code) running **without installation** using "gem install ..."
https://bugs.ruby-lang.org/issues/11028#change-52025
* Author: zaxebo zaxebo
* Status: Assigned
* Priority: Normal
* Assignee: Yukihiro Matsumoto
----------------------------------------
standalone running single file ( zipped archives of ruby code) running **without installation** using "gem install ..."
prior examples in other languages:
python myprg.pyz
java -jar myprg.jar
Detailed Description:
---------------------
In python, if i have multiple program files: "`a1.py`, `a2.py`, `__main__.py`,
`dir1/b1.py`, `dir1/b2.py`" and then i zip it as myprogram1.pyz
then i can run it as "python myprogram.pyz" (`__main__.py` inside the zip
file will be executed first). It is easy to distribute a single file
myprogram1.pyz
see: http://blogs.gnome.org/jamesh/2012/05/21/python-zip-files/
---
in java also we can bundle all the .class files into a single .jar file
and run it
java -jar myprogram1.jar
---
Currently in ruby the ".gem" file requires installation using "gem install ...". Then it gives some program file for running.
What i am asking is that some gem file should have manifest with which they can run directly without installing
That is, i request you to kind provide a feature in ruby that if i have lots of files like: `a1.rb`, `a2.rb`, `__main__.rb`, `dir1/a4.rb` etc.
(say, which uses Ruby-GTK for a Desktop application). Then i should be able to bundle them as zip file, say myprog1.zip or myprog1.pz ( rbz=ruby's zipped executable archive).
And then i can distribute this "single file" and execute it as:
ruby myprog1.rbz
This will execute the `__main__.rb` file among all the other .rb files,
inside this .zip archive myprog1.rbz .
Note: this .rbz file extension can be .gemz or whatever, but this functionality of "standalone running zipped archives of ruby code running without installation" is essential
--
https://bugs.ruby-lang.org/