Sha256: 3b5d165fdc860ec8cb23d686ded084b7aaac0d27841e2d0f84431e47bf668d82

Contents?: true

Size: 586 Bytes

Versions: 6

Compression:

Stored size: 586 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new('spec')

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  rdoc.main = "README.rdoc"
  rdoc.rdoc_files.include "README.rdoc", "lib/**/*.rb"
  rdoc.rdoc_files.exclude "lib/**/hash_with_indifferent_access.rb"
  rdoc.options << "--all" << "--verbose"
end

require 'yard'
#require 'yard/rake/yardoc_task'
YARD::Rake::YardocTask.new do |yard|
  yard.files   = %w( lib/**/*.rb )
  yard.options = %w( --main README.md --exclude hash_with_indifferent_access.rb )
end

task :default => :spec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
iqeo-conf-1.1.0.pre.0 Rakefile
iqeo-conf-1.0.1 Rakefile
iqeo-conf-1.0.0 Rakefile
iqeo-conf-0.0.13 Rakefile
iqeo-conf-0.0.12 Rakefile
iqeo-conf-0.0.11 Rakefile