[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: Where is libopenssl-ruby - For Rails install - UPDATED!

Ruby Student

10/22/2008 3:41:00 PM

[Note: parts of this message were removed to make it a legal post.]

On Tue, Oct 21, 2008 at 5:18 PM, Hugh Sasse <hgs@dmu.ac.uk> wrote:

>
>
> On Wed, 22 Oct 2008, Ruby Student wrote:
>
> > On Tue, Oct 21, 2008 at 2:32 PM, Hugh Sasse <hgs@dmu.ac.uk> wrote:
> >
> > > On Wed, 22 Oct 2008, Ruby Student wrote:
> > >
> > > > While installing Rails, I came across the fact that I need this
> library,
> > > > libopenssl-ruby.I am running LINUX Suse: 2.6.16.21-0.8-smp
> > > > ruby -v
> > > > ruby 1.8.6 (2008-08-08 patchlevel 286) [i686-linux]
> > > >
> > > > Where can I get that library?
> > >
> > > What is your package manager? yum,rpm,apt-get,...?
> > > >
> > > > Thank yuou
> > > >
> > > > --
> > > > Ruby Student
> > > >
> > >
> > >
> > I've been using rpm under Suse. But I am open to any suggestions.
>
> I can never remember the options for rpm as I last used it over a
> year ago. There was a hint there, though. It is a binary package
> for your distro, so however you get these rpm's, well, you do that.
>
> The first 4 hits from Google for libopenssl-ruby demonstrated this
> fact.
> > Thank you
> >
> Hugh
>
>
Well Team, you might be correct!That been said, I got this error while
installing Rails under Suze. To be precise, I am copying below the actual
errors.
The problem is that I performed a google search and the results was to get
the libopenssl-ruby library.
Any help is greatly appreciated!


nyc-linux-suse170:/local/demo # ruby script/server
=> Booting WEBrick...
/usr/local/lib/ruby/gems/1.8/gems/rails-2.1.1/lib/initializer.rb:229:in
`require_frameworks': no such file to load -- openssl (RuntimeError)
from
/usr/local/lib/ruby/gems/1.8/gems/rails-2.1.1/lib/initializer.rb:118:in
`process'
from
/usr/local/lib/ruby/gems/1.8/gems/rails-2.1.1/lib/initializer.rb:97:in
`send'
from
/usr/local/lib/ruby/gems/1.8/gems/rails-2.1.1/lib/initializer.rb:97:in `run'
from /local/demo/config/environment.rb:13
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
from
/usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/dependencies.rb:510:in
`require'
from
/usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/dependencies.rb:355:in
`new_constants_in'
... 7 levels...
from
/usr/local/lib/ruby/gems/1.8/gems/rails-2.1.1/lib/commands/server.rb:39
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
from script/server:3

Thank you

--
Ruby Student

1 Answer

Hugh Sasse

10/22/2008 4:07:00 PM

0



On Thu, 23 Oct 2008, Ruby Student wrote:

> On Tue, Oct 21, 2008 at 5:18 PM, Hugh Sasse <hgs@dmu.ac.uk> wrote:
>
> >
> >
> > On Wed, 22 Oct 2008, Ruby Student wrote:
> >
> > > On Tue, Oct 21, 2008 at 2:32 PM, Hugh Sasse <hgs@dmu.ac.uk> wrote:
> > >
> > > > On Wed, 22 Oct 2008, Ruby Student wrote:
> > > >
> > > > > While installing Rails, I came across the fact that I need this
> > library,
> > > > > libopenssl-ruby.I am running LINUX Suse: 2.6.16.21-0.8-smp
> > > > > ruby -v
> > > > > ruby 1.8.6 (2008-08-08 patchlevel 286) [i686-linux]
> > > > >
> > > > > Where can I get that library?
> > > >
> > > > What is your package manager? yum,rpm,apt-get,...?
> > > > >
> > > > > Thank yuou
> > > > >
> > > > > --
> > > > > Ruby Student
> > > > >
> > > >
> > > >
> > > I've been using rpm under Suse. But I am open to any suggestions.
> >
> > I can never remember the options for rpm as I last used it over a
> > year ago. There was a hint there, though. It is a binary package
> > for your distro, so however you get these rpm's, well, you do that.
> >
> > The first 4 hits from Google for libopenssl-ruby demonstrated this
> > fact.
> > > Thank you
> > >
> > Hugh
> >
> >
> Well Team, you might be correct!That been said, I got this error while
> installing Rails under Suze. To be precise, I am copying below the actual
> errors.
> The problem is that I performed a google search and the results was to get
> the libopenssl-ruby library.
> Any help is greatly appreciated!

`man rpm` includes on its first page:
INSTALLING, UPGRADING, AND REMOVING PACKAGES:
rpm {-i|--install} [install-options] PACKAGE_FILE ...

http://tinyurl...


>
>
> nyc-linux-suse170:/local/demo # ruby script/server
> => Booting WEBrick...
> /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.1/lib/initializer.rb:229:in
> `require_frameworks': no such file to load -- openssl (RuntimeError)

Yes, its a missing library.

Hugh