Tue Nov 1
#
#rails-core
15:08 < noradio> is ticket #2691, #2692, #2693, #2694 and #2695 meant to be witty mimesis?
15:08 < bitsweat> chao@cs.stanford.edu has a big issue with components
15:09 < noradio> that's how they GTD @ Stanford
15:09 < Ulysses> noradio: pls do resolve those tickets as NOT FUNNY
#
“ If you’re looking for someone to quote…just drop me a line. ”
Peter Cooper, Rails expert
#
“ NaNoWriMo is a forum exclusively committed to the timely production of crappy novels. ”
November is National Novel Writing Month
#
Unpack a Gem
#!/usr/bin/env ruby # unpack_gem - Unpack the contents of the specified # gem into the specified destination directory. # ex. # % unpack_gem fcgi-0.8.5.gem require 'rubygems/format' require 'rubygems/installer' abort "#{File.basename($0)} archive [destdir]" unless (1..2).member? ARGV.size gem, destination_dir = *ARGV destination_dir ||= gem[/^\w+/] Dir.mkdir(destination_dir) unless File.exists? destination_dir Gem::Installer.new('').extract_files(destination_dir, Gem::Format.from_file_by_path(gem))