Sha256: 1276a3699f2df84507bda09f05a8109193899f11a3b5f7cece46f59a3b9e74e4

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

# Tasks
namespace :foreman_remote_execution do
  namespace :example do
    desc 'Example Task'
    task task: :environment do
      # Task goes here
    end
  end
end

# Tests
namespace :test do
  desc 'Test ForemanRemoteExecution'
  Rake::TestTask.new(:foreman_remote_execution) do |t|
    test_dir = File.join(File.dirname(__FILE__), '../..', 'test')
    t.libs << ['test', test_dir]
    t.pattern = "#{test_dir}/**/*_test.rb"
    t.verbose = true
    t.warning = false
  end
end

namespace :foreman_remote_execution do
  task :rubocop do
    begin
      require 'rubocop/rake_task'
      RuboCop::RakeTask.new(:rubocop_foreman_remote_execution) do |task|
        task.patterns = ["#{ForemanRemoteExecution::Engine.root}/app/**/*.rb",
                         "#{ForemanRemoteExecution::Engine.root}/lib/**/*.rb",
                         "#{ForemanRemoteExecution::Engine.root}/test/**/*.rb"]
      end
    rescue
      puts 'Rubocop not loaded.'
    end

    Rake::Task['rubocop_foreman_remote_execution'].invoke
  end
end

Rake::Task[:test].enhance ['test:foreman_remote_execution']

load 'tasks/jenkins.rake'
if Rake::Task.task_defined?(:'jenkins:unit')
  Rake::Task['jenkins:unit'].enhance ['test:foreman_remote_execution', 'foreman_remote_execution:rubocop']
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
foreman_remote_execution-1.3.0 lib/tasks/foreman_remote_execution_tasks.rake
foreman_remote_execution-1.2.2 lib/tasks/foreman_remote_execution_tasks.rake
foreman_remote_execution-1.2.1 lib/tasks/foreman_remote_execution_tasks.rake
foreman_remote_execution-1.2.0 lib/tasks/foreman_remote_execution_tasks.rake
foreman_remote_execution-1.1.1 lib/tasks/foreman_remote_execution_tasks.rake
foreman_remote_execution-1.1.0 lib/tasks/foreman_remote_execution_tasks.rake