Skip to content
Snippets Groups Projects
Rakefile 560 B
Newer Older
  • Learn to ignore specific revisions
  • Alexander Olofsson's avatar
    Alexander Olofsson committed
    begin
      require 'bundler/setup'
    rescue LoadError
      puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
    end
    
    require 'rdoc/task'
    
    RDoc::Task.new(:rdoc) do |rdoc|
      rdoc.rdoc_dir = 'rdoc'
      rdoc.title    = 'ForemanNotificationSend'
      rdoc.options << '--line-numbers'
      rdoc.rdoc_files.include('README.md')
      rdoc.rdoc_files.include('lib/**/*.rb')
    end
    
    require 'bundler/gem_tasks'
    
    require 'rake/testtask'
    
    Rake::TestTask.new(:test) do |t|
      t.libs << 'test'
      t.pattern = 'test/**/*_test.rb'
      t.verbose = false
    end
    
    task default: :test