Jeweler will populate your gemspec with files it finds in git by default. Make sure to `git add` any uncommitted files.
Or, you can also manage these yourself:
Jeweler::Tasks.new do |gemspec|
# your original stuff here
gemspec.files.include "lib/**"
gemspec.files.include "README"
gemspec.files.include "LICENSE"
gemspec.files.include "ChangeLog.rdoc"
end
At this point, `rake install` should have the files you were looking for.
- Josh