1999-01-20 04:59:39 +00:00
|
|
|
Language Spec.
|
|
|
|
|
2001-10-16 03:27:23 +00:00
|
|
|
- Class#allocate - basicNew
|
2000-02-01 03:12:21 +00:00
|
|
|
* operator !! for rescue. ???
|
1999-10-29 09:25:48 +00:00
|
|
|
* objectify characters
|
1999-08-13 05:45:20 +00:00
|
|
|
* ../... outside condition invokes operator method too.
|
1999-11-17 07:30:37 +00:00
|
|
|
* ... inside condition turns off just before right condition.???
|
|
|
|
* package or access control for global variables??
|
1999-08-13 05:45:20 +00:00
|
|
|
* named arguments like foo(nation:="german") or foo(nation: "german").
|
2000-02-01 03:12:21 +00:00
|
|
|
* method to retrieve argument information (needs new C API)
|
1999-08-13 05:45:20 +00: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 03:12:21 +00:00
|
|
|
* I18N (or M17N) script/string/regexp
|
2000-02-18 06:59:36 +00:00
|
|
|
* Fixnum 0 as false ????
|
2001-01-09 08:04:39 +00:00
|
|
|
* discourage use of symbol variables (e.g. $/, etc.) in manual
|
2000-03-23 08:37:35 +00:00
|
|
|
* discourage use of Perlish features by giving warnings.
|
2000-05-30 04:24:17 +00:00
|
|
|
* non confusing in-block local variable (is it possible?)
|
2000-06-12 07:48:31 +00:00
|
|
|
+ remove scope by block
|
|
|
|
+ variables appears within block may have independent values.
|
2000-12-05 09:36:54 +00:00
|
|
|
* Regexp: make /o thread safe.
|
2001-02-16 07:53:21 +00:00
|
|
|
* decide whether begin with rescue or ensure make do..while loop.
|
2000-12-12 07:42:35 +00:00
|
|
|
* a +1 to be a+1, not a(+1).
|
2000-12-28 05:00:47 +00:00
|
|
|
* unify == and eql? again
|
|
|
|
* to_i returns nil if str contains no digit.
|
2001-01-09 08:04:39 +00:00
|
|
|
* raise exception by `` error
|
2001-10-16 03:27:23 +00:00
|
|
|
* jar like combined library package. -> RubyGems?
|
2001-07-24 09:07:33 +00:00
|
|
|
* resumable Exception via Exception#resume.
|
2001-08-20 04:29:58 +00:00
|
|
|
* method combination, e.g. before, after, around, etc.
|
2001-09-19 06:54:11 +00:00
|
|
|
* .. or something like defadvice in Emacs.
|
2001-10-16 03:27:23 +00:00
|
|
|
* property - for methods, or for objects in general.
|
2001-11-19 05:03:03 +00:00
|
|
|
* "in" modifier, to annotate, or to encourage assertion.
|
2002-08-29 09:08:18 +00:00
|
|
|
* selector namespace - something like generic-flet in CLOS, to help RubyBehavior
|
2002-01-11 09:18:54 +00:00
|
|
|
* private instance variable (as in Python?) @_foo in class Foo => @_Foo_foo
|
2002-01-19 14:22:27 +00:00
|
|
|
* warn/error "bare word" method, like "foo", you should type "foo()"
|
2002-08-20 07:36:01 +00:00
|
|
|
* clarify evaluation order of operator argument (=~, .., ...)
|
2002-08-29 09:08:18 +00:00
|
|
|
* :symbol => value hash in the form of {symbol: value, ...} ??
|
1999-01-20 04:59:39 +00:00
|
|
|
|
|
|
|
Hacking Interpreter
|
|
|
|
|
2001-01-09 07:26:21 +00:00
|
|
|
- generational GC
|
1999-10-15 08:52:18 +00:00
|
|
|
* non-blocking open (e.g. for named pipe) for thread
|
2000-03-23 08:37:35 +00:00
|
|
|
* avoid blocking with gethostbyname/gethostbyaddr (use fork ???)
|
2000-04-10 05:48:43 +00:00
|
|
|
* objectify interpreters ???
|
1999-01-20 04:59:39 +00:00
|
|
|
* remove rb_eval() recursions
|
|
|
|
* syntax tree -> bytecode ???
|
|
|
|
* scrambled script, or script filter
|
1999-08-13 05:45:20 +00:00
|
|
|
* setuid ruby
|
2000-04-10 05:48:43 +00:00
|
|
|
* performance tune for in-block (dynamic) local variables.
|
2000-06-13 09:42:40 +00:00
|
|
|
* give warnings to assign magic variables.
|
2000-06-19 08:38:11 +00:00
|
|
|
* export rb_io_{addstr,printf,puts,print}
|
2000-08-28 09:53:42 +00:00
|
|
|
* autoload should work with threads [ruby-talk:4589]
|
2000-12-05 09:36:54 +00:00
|
|
|
* remove stdio dependency from IOs.
|
2000-12-25 06:29:27 +00:00
|
|
|
* warn for inconsistent local variable usage (lv m and method m at the same time).
|
2001-01-09 07:26:21 +00:00
|
|
|
* MicroRuby
|
2001-01-18 08:43:14 +00:00
|
|
|
* Built-in Interactive Ruby.
|
2001-10-16 03:27:23 +00:00
|
|
|
* Parser API
|
2001-03-06 08:17:54 +00:00
|
|
|
* trap every method invocation, which can be enabled by e.g. trap_call :method.
|
2001-05-02 04:22:21 +00: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.
|
2002-01-23 07:30:43 +00:00
|
|
|
* Thread#max_stack_size attribute (possible??)
|
1999-08-13 05:45:20 +00:00
|
|
|
|
|
|
|
Standard Libraries
|
|
|
|
|
2001-01-09 07:26:21 +00:00
|
|
|
- Module#define_method which takes a name and a body (block, proc or method).
|
2001-01-09 08:04:39 +00:00
|
|
|
- Enume#inject
|
2001-02-02 11:38:20 +00:00
|
|
|
- Array#fetch
|
2001-02-13 05:09:11 +00:00
|
|
|
- IO::for_fd
|
2001-02-16 07:53:21 +00: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 06:54:57 +00:00
|
|
|
- Enumerable#sort_by for Schwartzian transformation
|
|
|
|
- fork_and_kill_other_threads.
|
|
|
|
- signal list (Signal::trap, Signal::list).
|
2001-11-19 05:03:03 +00:00
|
|
|
- move NameError under StandardError.
|
2001-12-10 07:18:16 +00:00
|
|
|
- Integer#to_s(base)
|
|
|
|
- Hash::new{default}
|
|
|
|
- hash etc. should handle self referenceing array/hash
|
2001-12-11 03:48:08 +00:00
|
|
|
- Array#select(n1,n2...) works like Array#indexes(n1,n2...)
|
2002-07-26 06:12:39 +00:00
|
|
|
- use Mersenne Twister RNG for random.
|
1999-08-13 05:45:20 +00:00
|
|
|
* String#scanf(?)
|
|
|
|
* Object#fmt(?)
|
|
|
|
* Time::strptime
|
|
|
|
* Integer[num], Float[num]; Fixnum[num]?
|
1999-10-21 07:52:15 +00:00
|
|
|
* method to retrieve non-number trailer for to_i/to_f.
|
1999-08-13 05:45:20 +00:00
|
|
|
* Stream or Port, abstract superclass of IO ?
|
|
|
|
* String#{pred,prev}, String#downto
|
|
|
|
* optional stepsize argument for succ()
|
2000-02-25 03:51:23 +00:00
|
|
|
* Ruby module -- Ruby::Version, Ruby::Interpreter
|
2000-05-25 05:55:12 +00:00
|
|
|
* introduce Boolean class; super of TrueClass, FalseClass
|
2000-08-29 02:52:41 +00:00
|
|
|
* synchronized method - synchronized{...}, synchronized :foo, :bar
|
2000-12-08 07:10:38 +00:00
|
|
|
* Array#&, Array#| to allow duplication. ???
|
2000-12-12 07:42:35 +00:00
|
|
|
* way to specify immortal (fork endurance) thread;
|
|
|
|
* or raise ForkException to every thread but fork caller.
|
2001-02-08 09:19:27 +00:00
|
|
|
* new user-defined marshal scheme. _dump(dumper), _load(restorer)
|
2001-05-11 05:24:59 +00:00
|
|
|
* library to load per-user profile seeking .ruby_profile or ruby.ini file.
|
2001-09-05 06:54:57 +00:00
|
|
|
* warning framework (warn, warning for Ruby level)
|
2002-05-14 06:22:31 +00:00
|
|
|
* marshal should not depend on sprintf (works bad with locale).
|
2001-09-19 06:54:11 +00:00
|
|
|
* ternary arg pow: a.pow(b,c) == a**b%c
|
2001-10-16 03:27:23 +00:00
|
|
|
* new caller(), e.g. call_stack; needs better name.
|
2001-11-19 05:03:03 +00:00
|
|
|
* remove dependency on MAXPATHLEN.
|
|
|
|
* pointer share mechanism similar to one in String for Array.
|
2001-12-10 07:18:16 +00:00
|
|
|
* deprecate Array#indexes, and Array#indices.
|
2001-12-18 08:47:06 +00:00
|
|
|
* require "1.6" etc. by /usr/lib/ruby/1.6/1.6.rb ;-)
|
2002-05-07 08:32:01 +00:00
|
|
|
* save both "feature names" and "normalized path" in $"
|
1999-01-20 04:59:39 +00:00
|
|
|
|
|
|
|
Extension Libraries
|
|
|
|
|
|
|
|
* ptk.rb pTk wrapper that is compatible to tk.rb
|
1999-10-29 09:25:48 +00:00
|
|
|
* Berkeley DB extension
|
2000-02-18 06:59:36 +00:00
|
|
|
* BitVector
|
2001-03-05 08:33:16 +00:00
|
|
|
* thread-safe fcgi
|
1999-01-20 04:59:39 +00:00
|
|
|
|
|
|
|
Ruby Libraries
|
|
|
|
|
2002-08-29 09:08:18 +00:00
|
|
|
- add uri.rb
|
2000-02-01 03:12:21 +00:00
|
|
|
* urllib.rb, nttplib.rb, etc.
|
1999-01-20 04:59:39 +00:00
|
|
|
* format like perl's
|
|
|
|
|
|
|
|
Tools
|
|
|
|
|
|
|
|
* freeze or undump to bundle everything
|
2001-10-02 04:31:23 +00:00
|
|
|
* bundle using zlib
|
1999-01-20 04:59:39 +00:00
|
|
|
|
|
|
|
Misc
|
|
|
|
|
1999-10-13 06:44:42 +00:00
|
|
|
- publish Ruby books
|
2000-12-05 09:36:54 +00:00
|
|
|
- publish Ruby books in English
|