Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a KISS tutorial that explains how to build a gem, where to store it, how to get it, basically a start to finish framework description of gem development.

This is the best I have found: http://railscasts.com/episodes/135-making-a-gem

share|improve this question

2 Answers

up vote 12 down vote accepted

A good tutorial (20-Nov-2010): http://blog.thepete.net/2010/11/creating-and-publishing-your-first-ruby.html

share|improve this answer

The easiest way is to use Bundler.

bundle gem my_gem

Then use the gem command to build your gem and push it to Gemcutter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.