On Wednesday 22 July 2009 11:07:03 Jeremy Evans wrote:
> On Jul 22, 1:50 am, wrapster <[email protected]> wrote:
> > HI all,
> >
> > Ive been trying to install/run sequel for quite some time now and been
> > unsuccessful at it...
> >
> > after a git clone,
> > #cd sequel
> > #rake install ( tried this as i was suggest to do so from the
> > irc)http://pastie.org/554684was the error ,finally ended up getting
> > nothing...
> >
> > what ever I tried, (git clone / download and install) this is what i
> > get
> > (main):001:0> require 'sequel'
> > LoadError: no such file to load -- sequel
> >         from (irb):1:in `require'
> >         from (irb):1
> > irb(main):002:0> ^C
> > irb(main):002:0>
>
> rake install just installs the gem, so you need to require 'rubygems'
> first.
>
> > #rake install -trace
> >
> > :rake install -trace
>
> I believe it's either -t or --trace.  -trace is the same as -t -r ace,
> which is going to attempt to require the ace library, which doesn't
> exist.
>
> Jeremy
> 
The rake install calls package first, which generates the tar and gem packages. 
The tar package is where your rake install fails as the 'z' option is 
apparently not available. Since you need rubygems anyway, this would be easy:

s...@blammo:~/Projects/sequel$ gem install sequel
Successfully installed sequel-3.2.0

If you want to clone the source and install from that:

s...@blammo:~/Projects/sequel$ rake gem
(in /home/spox/Projects/sequel)
mkdir -p pkg
  Successfully built RubyGem
  Name: sequel
  Version: 3.2.0
  File: sequel-3.2.0.gem
mv sequel-3.2.0.gem pkg/sequel-3.2.0.gem
s...@blammo:~/Projects/sequel$ gem install pkg/
Successfully installed sequel-3.2.0

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to