Seek repositories in RubyGems

  • Thread starter Marcin Grzywaczewski
  • Start date
M

Marcin Grzywaczewski

That's possible? As an example I'll present the APT (Debian Package System)...

killavus@manganux:~ apt-cache search ruby
ruby - An interpreter of object-oriented scripting language Ruby
ruby-elisp - Emacs-lisp ruby-mode for Ruby
ruby-full - Ruby full installation
ruby-gnome2 - GNOME-related bindings for the Ruby language
ruby-pkg-tools - Tools for building Debian Ruby packages
ruby-prof - A fast code profiler for Ruby
ruby1.8 - Interpreter of object-oriented scripting language Ruby 1.8

And so on... There are a command which could seek a gem repositories for what
I need by phrase?

Yours,
Killavus.
 
E

Eric Hodel

That's possible? As an example I'll present the APT (Debian Package
System)...

killavus@manganux:~ apt-cache search ruby
ruby - An interpreter of object-oriented scripting language Ruby
ruby-elisp - Emacs-lisp ruby-mode for Ruby
ruby-full - Ruby full installation
ruby-gnome2 - GNOME-related bindings for the Ruby language
ruby-pkg-tools - Tools for building Debian Ruby packages
ruby-prof - A fast code profiler for Ruby
ruby1.8 - Interpreter of object-oriented scripting language Ruby 1.8

And so on... There are a command which could seek a gem
repositories for what
I need by phrase?

gem search.

Try also:

gem help commands
 
L

Lyle Johnson

And so on... There are a command which could seek a gem
repositories for what
I need by phrase?

To search your locally installed gems:

gem search foo

To search the remotely available gems (which is probably what you want):

gem search foo --remote

Hope this helps,

Lyle
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top