Best way to discover new ruby ​​stones?

I wonder what is the best way to learn new gems when you first encountered it.

I know that you can check the official website (the easiest way!), Check Rdoc, create a binary document, play irb and, of course, please the source code.

But what are you doing? What is a more efficient method or process? Any other tools to use?

+3
source share
4 answers

My favorite way to learn new gems (besides reading the readme sometimes) is gemedit :

gem edit <gem_name>
# vim opens the gem directory
+2
source

I usually look for Gems if I am looking for a specific task that, it seems to me, has already been implemented by someone else (for example, the Wrapper API for Facebook or Twitter).

, ...

  • /wiki ( , )
  • , -
  • - , , / . ..;)

, , .

+2

,

bundle show <gem_name>
# or
bundle open <gem_name>

, .

+2

Github, ( , ). , , , .

0
source

All Articles