Rakefile in log_tribe-0.3.0 vs Rakefile in log_tribe-0.3.1

- old
+ new

@@ -2,14 +2,14 @@ require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'yard' -RSpec::Core::RakeTask.new('spec'.freeze) +RSpec::Core::RakeTask.new('spec') task default: :spec -desc 'Generate documentation'.freeze +desc 'Generate documentation' YARD::Rake::YardocTask.new do |t| - t.files = %w(lib/**/*.rb - LICENSE.txt).map(&:freeze).freeze - t.options = %w(--main README.md --no-private --protected).map(&:freeze).freeze + t.files = %w(lib/**/*.rb - LICENSE.txt).map(&:freeze) + t.options = %w(--main README.md --no-private --protected).map(&:freeze) end