module Jeweler::Specification

def ruby_code(obj)

Used by Specification#to_ruby to generate a ruby-respresentation of a Gem::Specification
def ruby_code(obj)
  case obj
  when Rake::FileList then obj.uniq.to_a.inspect
  else super
  end
end