Sha256: 2c374ef322b22c57ece631fa9e721fa363e2ad54f7312276fa61b72fe4d147e8

Contents?: true

Size: 419 Bytes

Versions: 13

Compression:

Stored size: 419 Bytes

Contents

#!/usr/bin/env rake
# frozen_string_literal: true

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

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

Bundler::GemHelper.install_tasks :name => 'foreman_ansible'

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
foreman_ansible-15.0.2 Rakefile
foreman_ansible-15.0.1 Rakefile
foreman_ansible-15.0.0 Rakefile
foreman_ansible-14.2.2 Rakefile
foreman_ansible-14.2.1 Rakefile
foreman_ansible-13.0.7 Rakefile
foreman_ansible-14.2.0 Rakefile
foreman_ansible-14.1.1 Rakefile
foreman_ansible-14.1.0 Rakefile
foreman_ansible-13.0.5 Rakefile
foreman_ansible-14.0.0 Rakefile
foreman_ansible-13.0.4 Rakefile
foreman_ansible-13.0.3 Rakefile