Sha256: 674e9d1c148899aa198be2c3d5615e2174541544555f25b76b6b8a8e967133d1

Contents?: true

Size: 939 Bytes

Versions: 26

Compression:

Stored size: 939 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    = 'ForemanRemoteExecution'
  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', __FILE__)

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 => _
  puts 'Rubocop not loaded.'
end

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

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
foreman_remote_execution-1.3.1 Rakefile
foreman_remote_execution-1.3.0 Rakefile
foreman_remote_execution-1.2.2 Rakefile
foreman_remote_execution-1.2.1 Rakefile
foreman_remote_execution-1.2.0 Rakefile
foreman_remote_execution-1.1.1 Rakefile
foreman_remote_execution-1.1.0 Rakefile
foreman_remote_execution-1.0.0 Rakefile
foreman_remote_execution-0.3.2 Rakefile
foreman_remote_execution-0.3.1 Rakefile
foreman_remote_execution-0.3.0 Rakefile
foreman_remote_execution-0.2.3 Rakefile
foreman_remote_execution-0.2.2 Rakefile
foreman_remote_execution-0.2.1 Rakefile
foreman_remote_execution-0.1.2 Rakefile
foreman_remote_execution-0.1.1 Rakefile
foreman_remote_execution-0.1.0 Rakefile
foreman_remote_execution-0.0.10 Rakefile
foreman_remote_execution-0.0.8 Rakefile
foreman_remote_execution-0.0.7 Rakefile