Rakefile in log_tribe-0.2.1 vs Rakefile in log_tribe-0.2.2

- old
+ new

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