Rakefile in zip_tricks-4.4.0 vs Rakefile in zip_tricks-4.4.1
- old
+ new
@@ -1,10 +1,12 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"
require 'yard'
YARD::Rake::YardocTask.new(:doc) do |t|
- t.files = ['lib/**/*.rb', 'README.md', 'LICENSE.txt', 'IMPLEMENTATION_DETAILS.md']
+ # The dash has to be between the two to "divide" the source files and
+ # miscellaneous documentation files that contain no code
+ t.files = ['lib/**/*.rb', '-', 'LICENSE.txt', 'IMPLEMENTATION_DETAILS.md']
end
RSpec::Core::RakeTask.new(:spec)
task :default => :spec