From: Jan Svitok Date: 2006-12-08T18:22:55+09:00 Subject: Re: Execute environment - rake aborted! - no such file to load -- openssl On 12/8/06, dave . wrote: > > Env: Ruby 1.8.5, Linux > Any help would be greatly appreciated with this issue > Thanks > no such file to load -- openssl > /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in > `gem_original_require' > /usr/local/lib/ruby/gems/1.8/gems/payment-1.0.1/lib/payment.rb:29 > payment (1.0.1) > Payment is used to process credit cards and electronic cash through > merchant accounts. > require_gem 'payment' The openssl package is missing in your system. It is required by 'payment' gem. The solution depends on the distribution you are using. Try searching for ruby-openssl or something similar. You can check if you have fixed the issue by running just ruby -rubygems -e "require 'payment'" instead of the whole rails stuff.