[#399938] how to read arrary with an array — "Richard D." <lists@...>

Hello. I believe this is basic question, but I'm just starting to learn

19 messages 2012/10/02

[#400050] img src while sending email ruby cgi — Ferdous ara <lists@...>

Hi

16 messages 2012/10/05

[#400351] Drop 1st and last particular character — ajay paswan <lists@...>

What is the most efficient way to drop '#' from the first place and last

15 messages 2012/10/16

[#400374] database part of a desktop application — "Sebastjan H." <lists@...>

Hi,

14 messages 2012/10/16
[#400375] Re: database part of a desktop application — Chad Perrin <code@...> 2012/10/16

On Wed, Oct 17, 2012 at 05:28:39AM +0900, Sebastjan H. wrote:

[#400377] Re: database part of a desktop application — sto.mar@... 2012/10/17

Am 16.10.2012 23:24, schrieb Chad Perrin:

[#400389] Re: database part of a desktop application — Chad Perrin <code@...> 2012/10/17

On Wed, Oct 17, 2012 at 01:39:21PM +0900, sto.mar@web.de wrote:

[#400386] Unable to send attachment, and dealing with multiple attachment — ajay paswan <lists@...>

Hi,

11 messages 2012/10/17

[#400454] Hash with Integer key issue — Wayne Simmerson <lists@...>

Hi Im new to Ruby and am getting some unexpected results from a

18 messages 2012/10/19

[#400535] Name/symbol/object type clash? What is happening here? — Todd Benson <caduceass@...>

It's nonsense code, but I'm curious as to what is going on behind the scenes...

41 messages 2012/10/23

[#400556] Calling a method foo() or an object foo.method_call_here - both — Marc Heiler <lists@...>

Hello.

13 messages 2012/10/24

[#400650] OpenSSL ECDSA public key from private — Nokan Emiro <uzleepito@...>

Hi,

11 messages 2012/10/27

[#400680] Passing folder as argument ARGV? — Joz Private <lists@...>

Is there an easy way to pass multiple files on the command line?

15 messages 2012/10/28
[#400681] Re: Passing folder as argument ARGV? — brad smith <bradleydsmith@...> 2012/10/28

How are you traversing the directory you pass in on the command line ?

[#400697] File.readable? and /proc — Jeff Moore <lists@...>

root@nail:/projects/proc_fs# uname -a

13 messages 2012/10/28

[#400714] Marshal.load weird issue — "Pierre J." <lists@...>

Hi guys

12 messages 2012/10/28

[#400781] bug?: local variable created in if modifier not available in modified expression — "Mean L." <lists@...>

irb(main):001:0> local1 if local1 = "created"

21 messages 2012/10/30
[#400807] Re: bug?: local variable created in if modifier not available in modified expression — Bartosz Dziewoński <matma.rex@...> 2012/10/31

Oh, and in case it wasn't apparent: you can just add

[#400808] Re: bug?: local variable created in if modifier not available in modified expression — Eliezer Croitoru <eliezer@...> 2012/10/31

On 10/31/2012 4:52 PM, Bartosz Dziewoナгki wrote:

[#400809] Re: bug?: local variable created in if modifier not available in modified expression — Robert Klemme <shortcutter@...> 2012/10/31

On Wed, Oct 31, 2012 at 4:28 PM, Eliezer Croitoru <eliezer@ngtech.co.il>wrote:

[#400784] REXML & HTMLentities incorrectly map to UTF-8 — "Mark S." <lists@...>

I have some XML data (UTF 8) that I'm trying to convert into another XML

13 messages 2012/10/30

[ANN] tork 19.0.0

From: Suraj Kurapati <sunaku@...>
Date: 2012-10-18 02:00:18 UTC
List: ruby-talk #400400
Tork - test with fork
https://github.com/sunaku/tork#readme

  _______      _______
   ___  /___________ /__
    _  __/ __ \  __/ /_/
    / /_/ /_/ / / / ,\
    \__/\____/_/ /_/|_\
               >>>------>


Tork runs your tests as they change, in parallel:

  1. Absorbs test execution overhead into a master process.

  2. Forks to inherit overhead and run test files in parallel.

  3. Avoids running unchanged tests inside changed test files.


## Version 19.0.0 (2012-10-17)

Major:

  * The `.tork.rb` configuration file has been replaced by the `.tork/`
    directory, which contains specially-named Ruby scripts.  Refer to the
    `TORK_CONFIGS` environment variable in tork(1) for more information.

  * The `Tork::Config` object has been replaced by various data structures in
    the `Tork::` namespace.  See the "FILES" sections in the manual pages of
    tork programs for information on the data structures that replaced it.

  * `Tork::Config.test_event_hooks` has been removed.  Instead, you must now
    monitor the STDOUT of tork-master(1) or tork-engine(1) either directly
    or indirectly, via tork-remote(1), and react to their status messages.
    See the tork-notify(1) program for an example of how to implement this.

  * tork(1): 't' now runs a specified test, whereas 'a' runs all tests.

  * tork-engine(1): the `run_test_file` command now takes line numbers as a
    variable-length list of arguments (varargs) rather than as an array.

  * tork-engine(1): the `run_test_file` command now runs an entire test file
    when zero is given as one of the line numbers to be run.

  * tork-master(1): the `load` command is no longer accepted.  Instead, you
    must specify load paths and overhead files in the `.tork/master.rb` file.

  * The `TORK_CONFIGS` env-var is now a colon delimited list of directories.

  * The `tork/client` library has been removed.  The threaded IO and popen()
    wrappers that it provided have been replaced by the powerful IO.select().

Minor:

  * tork(1): allow user to specify arguments after command key

  * tork(1): add 'k' to stop all currently running tests with SIGKILL

  * add tork-remote(1) to remotely control any tork program.  This feature is
    made possible by the awesome power of IO.select() and UNIX domain sockets.

  * add tork-notify(1) as example of using tork-remote(1) and tork-engine(1)

  * tork-engine(1): add `["run_test_files"]` command to run multiple files

  * tork-engine(1): emit edge-triggered `pass_now_fail` and `fail_now_pass`
    events to notify you about changes in a test file's pass/fail status.

  * typing Control-D now breaks tork programs out of `Tork::Server#loop()`

Patch:

  * tork-master(1): stop workers with SIGKILL when quitting

Other:

  * tork(1): document parameters for `t` and `s` commands

  * README: add tip about rlwrap for better interactive

  * README: simplify watch command using pgrep & xargs

  * README: use standard bundle exec; no `--binstubs`

In This Thread

Prev Next