diff -r c09ca4007e6c -r 9d59d30685cb Rakefile --- a/Rakefile Tue May 16 13:58:56 2017 -0700 +++ b/Rakefile Tue May 16 15:52:05 2017 -0700 @@ -23,6 +23,7 @@ select{|line| line =~ /VERSION =/}.first.match(/([\d|.]+)/)[1] task :default => [ :spec, :docs, :package ] +task :spec => [ :compile ] ######################################################################## @@ -34,11 +35,7 @@ spec = Gem::Specification.new do |s| s.email = 'mahlon@martini.nu' s.homepage = 'https://bitbucket.org/mahlon/Ruby-Ezmlm' - s.authors = [ - 'Mahlon E. Smith ', - 'Michael Granger ', - 'Jeremiah Jordan ' - ] + s.authors = [ 'Mahlon E. Smith', 'Michael Granger', 'Jeremiah Jordan' ] s.platform = Gem::Platform::RUBY s.summary = "Interact with Ezmlm-IDX mailing lists." s.name = PROJECT @@ -84,7 +81,7 @@ rdoc.rdoc_dir = 'docs' rdoc.main = "README.rdoc" # rdoc.options = [ '-f', 'fivefish' ] - rdoc.rdoc_files = [ 'lib', *FileList['ext/*/*.c'], *FileList['*.rdoc'] ] + rdoc.rdoc_files = [ 'lib', *FileList['ext/**.c'], *FileList['*.rdoc'], *FileList['*.md'] ] end RDoc::Task.new do |rdoc|