Sha256: 0144622188c4e1cca63a7a8f1ffcbada94f51d22ac81485ee81299d0daa8d08e
Contents?: true
Size: 469 Bytes
Versions: 5
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true $LOAD_PATH.unshift File.join(File.dirname(__FILE__), 'lib') require 'rubygems' require 'bundler' require 'rake/testtask' require 'rdoc/task' require 'oh_my_log/version' desc 'Default: generate Oh My Log doc' task default: :doc Rake::RDocTask.new(:doc) do |rdoc| version = OhMyLog::VERSION rdoc.rdoc_dir = 'rdoc' rdoc.title = "oh_my_log_#{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
oh_my_log-1.0.5 | Rakefile |
oh_my_log-1.0.4 | Rakefile |
oh_my_log-1.0.3 | Rakefile |
oh_my_log-1.0.2 | Rakefile |
oh_my_log-1.0.1 | Rakefile |