Sha256: 50b509802a03db0a94dc22d49f80f3034edfce251852819ba886c657c155f61a
Contents?: true
Size: 480 Bytes
Versions: 4
Compression:
Stored size: 480 Bytes
Contents
require 'bundler/gem_tasks' # Run test by default. task :default => :spec task :test => :spec require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.verbose = !ENV["VERBOSE"].nil? end require 'yard' YARD::Rake::YardocTask.new(:yardoc) do |y| y.options = ["--output-dir", "yardoc"] end namespace :yardoc do task :clobber do rm_r "yardoc" rescue nil end end task :clobber => "yardoc:clobber" Dir["tasks/**/*.rake"].each do |file| load(file) end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
whois-5.0.1 | Rakefile |
whois-5.0.0 | Rakefile |
whois-parser-1.2.0 | Rakefile |
whois-4.1.0 | Rakefile |