Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby "Mail" gem docs

Tags:

ruby

gem

mail-gem

I can't find the full documentation of the Mail gem https://github.com/mikel/mail

For the documentation, all links are to the main github page, but the readme is far from complete. Is there any alternative to search everything in the source code?

like image 458
Dan Mazzini Avatar asked Jun 08 '12 13:06

Dan Mazzini


2 Answers

Per @d11wtq in the comments above you can find the rdoc documentation on ruby-doc.org and rubydoc.info

like image 113
Egryan Avatar answered Oct 08 '22 07:10

Egryan


If you installed the gem with the documentation, you could run a local gem documentation server by running:

gem server

It will tell you where it's accessible. Connect with your web browser and look for the mail gem. There's more documentation there.

like image 31
Philippe Green Avatar answered Oct 08 '22 07:10

Philippe Green