Ruby on Rails Wednesday, January 4, 2012

On Wed, Jan 4, 2012 at 11:04 AM, Muruga <murugu2012@gmail.com> wrote:
Hi all
        After I try to install a gem locally using .gem file.My gem
list is showing empty.

       I am using RVM.

        But my app is running and gems are there in directory.

        $gem list
         o/p:
        *** LOCAL GEMS ***

     Please help me out this issue.Thanks in advance...

Are you using bundler (with a Gemfile ?)

What is output of

$ gem list # full output please
$ bundle exec gem list # this should really show activerecord etc.

The output from above commands can be different !

To use a locally installed gem in a Gemfile with bundler,
something like this may be required:

Gemfile:
...
gem 'linecache19', '0.5.13', :path => "~/.rvm/gems/ruby-1.9.3-p0/gems/linecache19-0.5.13/"
...

HTH,

Peter

--
Peter Vandenabeele
http://twitter.com/peter_v

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment