Sha256: e765b5223307e1b3bc89a7a45d68f5c2c0548ed763c54212d60d7c1f0be9fe72

Contents?: true

Size: 944 Bytes

Versions: 11

Compression:

Stored size: 944 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ForemanFogProxmox'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)

Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task default: :test

begin
  require 'rubocop/rake_task'
  RuboCop::RakeTask.new
rescue StandardError => _
  puts 'Rubocop not loaded.'
end

task :default do
  Rake::Task['rubocop'].execute
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
foreman_fog_proxmox-0.8.0 Rakefile
foreman_fog_proxmox-0.7.0 Rakefile
foreman_fog_proxmox-0.6.0 Rakefile
foreman_fog_proxmox-0.5.6 Rakefile
foreman_fog_proxmox-0.5.5 Rakefile
foreman_fog_proxmox-0.5.4 Rakefile
foreman_fog_proxmox-0.5.3 Rakefile
foreman_fog_proxmox-0.5.2 Rakefile
foreman_fog_proxmox-0.5.1 Rakefile
foreman_fog_proxmox-0.5.0 Rakefile
foreman_fog_proxmox-0.4.0 Rakefile