Sha256: 4b7e81a9a4dd20edf979338d2485c394e790f059bb8ec495c6534fb533c85a8e

Contents?: true

Size: 927 Bytes

Versions: 133

Compression:

Stored size: 927 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    = 'ForemanRhCloud'
  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 => _
  puts 'Rubocop not loaded.'
end

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

Version data entries

133 entries across 133 versions & 1 rubygems

Version Path
foreman_rh_cloud-5.0.28 Rakefile
foreman_rh_cloud-4.0.27 Rakefile
foreman_rh_cloud-3.0.26 Rakefile
foreman_rh_cloud-4.0.26 Rakefile
foreman_rh_cloud-4.0.25.1 Rakefile
foreman_rh_cloud-3.0.25 Rakefile
foreman_rh_cloud-4.0.25 Rakefile
foreman_rh_cloud-3.0.24.1 Rakefile
foreman_rh_cloud-4.0.24.1 Rakefile
foreman_rh_cloud-3.0.24 Rakefile
foreman_rh_cloud-4.0.24 Rakefile
foreman_rh_cloud-3.0.23 Rakefile
foreman_rh_cloud-4.0.23 Rakefile
foreman_rh_cloud-3.0.22 Rakefile
foreman_rh_cloud-4.0.22 Rakefile
foreman_rh_cloud-4.0.21.1 Rakefile
foreman_rh_cloud-3.0.21.1 Rakefile
foreman_rh_cloud-3.0.21 Rakefile
foreman_rh_cloud-3.0.20 Rakefile
foreman_rh_cloud-3.0.19 Rakefile