Ronaldo (ronaldoferraz @ gmail dot com) enviou este
link e acrescentou: "
O mundo do desenvolvimento está cheio de notícias sobre o Rails, o framework de desenvolvimento Web que, supostamente, aumenta em até dez vezes a produtividade na criação de aplicações para a Internet. Eu, que estou usando e gostei, fiz um tutorial rápido, introduzindo o Rails para o público brasileiro. Se alguém tiver interesse, segue o link."
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:26:in `require': No such file to load -- rubygems/builder (LoadError)
Examinando no arquivo custom_require.rb me parece que não esta achando algum arquivo ou caminho.
# We replace Ruby's require with our own, which is capable of loading gems on demand.
#
# When you call require 'x', this is what happens:
# * If the file can be loaded from the existing Ruby loadpath, it is.
# * Otherwise, installed gems are searched for a file that matches. If it's found in gem
# 'y', that gem is activated (added to the loadpath).
#
# The normal require functionality of returning false if that file has already been
# loaded is preserved.
def require(path)
require__ path
rescue LoadError
begin
@gempath_searcher ||= Gem::GemPathSearcher.new
if spec = @gempath_searcher.find(path)
Gem.activate(spec.name, true, "= #{spec.version}")
require__ path
else
# LINHA 26 QUE OCORRE O ERRO NO CAMINHO.
raise LoadError, "No such file to load -- #{path}"
end
end
end
end # module Kernel