Has much changed with the release of Bundler? Is there a template that can be used as a base? What are the best practices?
Some posts that I have found useful:
Edit (2012-01-10): An excellent all-around guide to gem best practices is RubyGems Guides. I would highly recommend starting here now.
To summarize the key points:
lib/gem.rb
lib/gem/
bin
data
test
spec
require
VERSION
require 'rubygems'
$LOAD_PATH
require File.join(__FILE__, 'foo', 'bar')
2.1m questions
2.1m answers
60 comments
57.0k users