Dan Mazzini
Dan Mazzini

Reputation: 1001

Ruby "Mail" gem docs

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?

Upvotes: 13

Views: 5516

Answers (2)

Egryan
Egryan

Reputation: 717

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

Upvotes: 4

Philippe Green
Philippe Green

Reputation: 952

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.

Upvotes: 1

Related Questions