1999-01-20 07:59:39 +03:00
|
|
|
Language Spec.
|
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
* operator !! for rescue. ???
|
1999-10-29 13:25:48 +04:00
|
|
|
* objectify characters
|
1999-08-13 09:45:20 +04:00
|
|
|
* ../... outside condition invokes operator method too.
|
1999-11-17 10:30:37 +03:00
|
|
|
* ... inside condition turns off just before right condition.???
|
|
|
|
* package or access control for global variables??
|
1999-08-13 09:45:20 +04:00
|
|
|
* named arguments like foo(nation:="german") or foo(nation: "german").
|
2000-02-01 06:12:21 +03:00
|
|
|
* method to retrieve argument information (needs new C API)
|
1999-08-13 09:45:20 +04:00
|
|
|
* multiple return values, yield values. maybe incompatible ???
|
|
|
|
* cascading method invocation ???
|
|
|
|
* def Class#method .. end ??
|
|
|
|
* class Foo::Bar<Baz .. end, module Boo::Bar .. end
|
|
|
|
* def Foo::Bar::baz() .. end ??
|
2000-02-01 06:12:21 +03:00
|
|
|
* I18N (or M17N) script/string/regexp
|
2000-02-18 09:59:36 +03:00
|
|
|
* Fixnum 0 as false ????
|
2001-01-09 11:04:39 +03:00
|
|
|
* discourage use of symbol variables (e.g. $/, etc.) in manual
|
2000-03-23 11:37:35 +03:00
|
|
|
* discourage use of Perlish features by giving warnings.
|
2000-05-30 08:24:17 +04:00
|
|
|
* non confusing in-block local variable (is it possible?)
|
2000-06-12 11:48:31 +04:00
|
|
|
+ remove scope by block
|
|
|
|
+ variables appears within block may have independent values.
|
2000-12-05 12:36:54 +03:00
|
|
|
* Regexp: make /o thread safe.
|
2001-02-16 10:53:21 +03:00
|
|
|
* decide whether begin with rescue or ensure make do..while loop.
|
2000-12-12 10:42:35 +03:00
|
|
|
* a +1 to be a+1, not a(+1).
|
2000-12-28 08:00:47 +03:00
|
|
|
* unify == and eql? again
|
|
|
|
* to_i returns nil if str contains no digit.
|
2001-01-09 11:04:39 +03:00
|
|
|
* raise exception by `` error
|
2001-03-19 06:20:24 +03:00
|
|
|
* jar like combined library package.
|
2001-07-24 13:07:33 +04:00
|
|
|
* resumable Exception via Exception#resume.
|
2001-08-20 08:29:58 +04:00
|
|
|
* method combination, e.g. before, after, around, etc.
|
2001-08-23 10:02:15 +04:00
|
|
|
* .. or something like defactive in Emacs.
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
Hacking Interpreter
|
|
|
|
|
2001-01-09 10:26:21 +03:00
|
|
|
- generational GC
|
1999-10-15 12:52:18 +04:00
|
|
|
* non-blocking open (e.g. for named pipe) for thread
|
2000-03-23 11:37:35 +03:00
|
|
|
* avoid blocking with gethostbyname/gethostbyaddr (use fork ???)
|
2000-04-10 09:48:43 +04:00
|
|
|
* objectify interpreters ???
|
1999-01-20 07:59:39 +03:00
|
|
|
* remove rb_eval() recursions
|
|
|
|
* syntax tree -> bytecode ???
|
|
|
|
* scrambled script, or script filter
|
1999-08-13 09:45:20 +04:00
|
|
|
* setuid ruby
|
2000-04-10 09:48:43 +04:00
|
|
|
* performance tune for in-block (dynamic) local variables.
|
2000-06-13 13:42:40 +04:00
|
|
|
* give warnings to assign magic variables.
|
2000-06-19 12:38:11 +04:00
|
|
|
* export rb_io_{addstr,printf,puts,print}
|
2000-08-28 13:53:42 +04:00
|
|
|
* autoload should work with threads [ruby-talk:4589]
|
2000-12-05 12:36:54 +03:00
|
|
|
* remove stdio dependency from IOs.
|
2000-12-25 09:29:27 +03:00
|
|
|
* warn for inconsistent local variable usage (lv m and method m at the same time).
|
2001-01-09 10:26:21 +03:00
|
|
|
* MicroRuby
|
2001-01-18 11:43:14 +03:00
|
|
|
* Built-in Interactive Ruby.
|
2001-03-06 11:17:54 +03:00
|
|
|
* trap every method invocation, which can be enabled by e.g. trap_call :method.
|
2001-05-02 08:22:21 +04:00
|
|
|
* unify Errno exceptions of same errno, or new exception comparison scheme.
|
|
|
|
* 2.times{|i| if i==0 then a = 15 else puts eval("a") end} should print nil.
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
Standard Libraries
|
|
|
|
|
2001-01-09 10:26:21 +03:00
|
|
|
- Module#define_method which takes a name and a body (block, proc or method).
|
2001-01-09 11:04:39 +03:00
|
|
|
- Enume#inject
|
2001-02-02 14:38:20 +03:00
|
|
|
- Array#fetch
|
2001-02-13 08:09:11 +03:00
|
|
|
- IO::for_fd
|
2001-02-16 10:53:21 +03:00
|
|
|
- Process::waitall [ruby-talk:4557]
|
|
|
|
- Process::Status
|
|
|
|
- File::lchown, File::lchmod; xxx - still need work for non existing platforms
|
|
|
|
- move Time::times to Process.
|
2001-09-05 10:54:57 +04:00
|
|
|
- Enumerable#sort_by for Schwartzian transformation
|
|
|
|
- fork_and_kill_other_threads.
|
|
|
|
- signal list (Signal::trap, Signal::list).
|
1999-08-13 09:45:20 +04:00
|
|
|
* String#scanf(?)
|
|
|
|
* Object#fmt(?)
|
2000-02-08 11:54:01 +03:00
|
|
|
* Integer#{bin,oct,hex,heX}
|
1999-08-13 09:45:20 +04:00
|
|
|
* Time::strptime
|
|
|
|
* Integer[num], Float[num]; Fixnum[num]?
|
1999-10-21 11:52:15 +04:00
|
|
|
* method to retrieve non-number trailer for to_i/to_f.
|
1999-08-13 09:45:20 +04:00
|
|
|
* Stream or Port, abstract superclass of IO ?
|
|
|
|
* String#{pred,prev}, String#downto
|
|
|
|
* optional stepsize argument for succ()
|
2000-02-25 06:51:23 +03:00
|
|
|
* Ruby module -- Ruby::Version, Ruby::Interpreter
|
2000-05-25 09:55:12 +04:00
|
|
|
* introduce Boolean class; super of TrueClass, FalseClass
|
2000-08-29 06:52:41 +04:00
|
|
|
* synchronized method - synchronized{...}, synchronized :foo, :bar
|
2000-12-08 10:10:38 +03:00
|
|
|
* Array#&, Array#| to allow duplication. ???
|
2000-12-12 10:42:35 +03:00
|
|
|
* way to specify immortal (fork endurance) thread;
|
|
|
|
* or raise ForkException to every thread but fork caller.
|
2001-01-09 10:26:21 +03:00
|
|
|
* Hash::new{default} or recommend Hash#fetch?
|
2001-02-08 12:19:27 +03:00
|
|
|
* new user-defined marshal scheme. _dump(dumper), _load(restorer)
|
2001-02-26 08:29:06 +03:00
|
|
|
* hash etc. should handle self referenceing array/hash
|
2001-05-02 08:22:21 +04:00
|
|
|
* move NameError under StandardError.
|
2001-05-11 09:24:59 +04:00
|
|
|
* library to load per-user profile seeking .ruby_profile or ruby.ini file.
|
2001-09-05 10:54:57 +04:00
|
|
|
* warning framework (warn, warning for Ruby level)
|
2001-09-03 09:37:42 +04:00
|
|
|
* marshal should not depend on sprintf/strtod (works bad for locale).
|
2001-09-05 10:54:57 +04:00
|
|
|
* ternary arg - a.pow(b,c) == a**b%c
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
Extension Libraries
|
|
|
|
|
|
|
|
* ptk.rb pTk wrapper that is compatible to tk.rb
|
1999-10-29 13:25:48 +04:00
|
|
|
* Berkeley DB extension
|
2000-02-18 09:59:36 +03:00
|
|
|
* BitVector
|
2001-03-05 11:33:16 +03:00
|
|
|
* thread-safe fcgi
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
Ruby Libraries
|
|
|
|
|
2000-05-18 08:32:13 +04:00
|
|
|
* add uri.rb
|
2000-02-01 06:12:21 +03:00
|
|
|
* urllib.rb, nttplib.rb, etc.
|
1999-01-20 07:59:39 +03:00
|
|
|
* format like perl's
|
|
|
|
|
|
|
|
Tools
|
|
|
|
|
|
|
|
* freeze or undump to bundle everything
|
|
|
|
|
|
|
|
Misc
|
|
|
|
|
1999-10-13 10:44:42 +04:00
|
|
|
- publish Ruby books
|
2000-12-05 12:36:54 +03:00
|
|
|
- publish Ruby books in English
|