Beschreibung:
The Ruby dynamic OO programming language.
|
|
|
Ray Tracing API.
|
| |
Has any one written or used a RayTracing API in ruby? I was not able to find one using Google.
|
|
Here's a filtered file/dir copy, FWIW.
|
| |
I had a need to do a filtered directory-tree copy, but didn't see anything in the std lib docs (or from googling) other than FileUtils.cp_r which doesn't do filtering, so I made alternate versions of that and FileUtils.copy_entry that do filtering. Ordinarily, I'd try to form it into something appropriate for potential... Mehr »
|
|
clogger 0.3.0 - configurable logging for Rack
|
| |
Clogger is Rack middleware for logging HTTP requests. The log format is customizable so you can specify exactly which fields to log. * [link] * clog...@librelist.com * git://git.bogomips.org/clogger .git * [link] Changes: You may now force the :reentrant flag to +true+ or +false+ in... Mehr »
|
|
OptionParser does not enforce required argument
|
| |
I'm not seeing the difference between specifying a required argument and an option argument in OptionParser other than they used '<<' in the assignment of the former. When I don't give an output_file it runs fine until it needs to use the filename and then gives a nil error. When I do specify the filename I get an error for using the '<<' operator. Command... Mehr »
|
|
Hurry Up, Free Check Of $327 With Your Name.
|
| |
Hurry Up, Free Check Of $327 With Your Name. Quickly open below website and click any one of the Red Color Text in the website and enter your payeename and address where to get your check. The secret website link is [link]
|
|
algorithm to truncate date to beginning of week?
|
| |
I need to be able to take any date after Jan 1, 1980 and truncate it to the nearest week. Example: Wed Jan 09 17:53:23 -0600 1980 should truncate to Sun Jan 06 00:00:00 -0600 1980 Tue Feb 09 12:29:51 -0600 2010 should truncate to Sun Feb 07 00:00:00 -0600 2010 I've tried all sorts of tricks with modulus (% operator) on the integer representation of time but I can't get anything to work over a range of dates.... Mehr »
|
|
Need Code to Create Directory Picking Dialog Box
|
| |
I have a Ruby program and want to be able to pick a directory using a dialog box. Does anyone have a quick, easy piece of code that will bring up a dialog box to pick a directory? That's the only GUI part of the program I need. I don't want to learn a whole GUI programming library just to create a directory picking dialog box, so if someone has... Mehr »
|
|
An Array of Arrays using Array.sort_by
|
| |
Hi, I have: myarray = Array.new mylist = [1,2] mylist2 = [3,1] mylist3 = [2,1] myarray.push(mylist) myarray.push(mylist2) myarray.push(mylist3) myarray.sort myarray.each do |x| puts x[0] end And I would like to be able to sort myarray by the first or second elements in the mylists... I have been on this problem for a few hours, ay help would be... Mehr »
|
|
Problems using the 'extensions' gem - can anyone help?
|
| |
I'm running Ruby 1.9.1-p378 (RC2) on windows, installed from the RubyInstaller.org site. I've installed 'extensions' gem ("gem install -r extensions"). When I run irb and try and "require 'extensions/all" I get the following error: C:\Windows\System32>irb irb(main):001:0> require 'rubygems' => false... Mehr »
|
|
|