Sha256: f0a6cb04ff59a296312824da8765c1588a9843a8e34feab4b0f1ec9049317f6c

Contents?: true

Size: 941 Bytes

Versions: 12

Compression:

Stored size: 941 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    = 'ForemanGoogle'
  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 => _e
  puts 'Rubocop not loaded.'
end

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
foreman_google-3.0.2 Rakefile
foreman_google-3.0.1 Rakefile
foreman_google-3.0.0 Rakefile
foreman_google-2.0.1 Rakefile
foreman_google-2.0.0 Rakefile
foreman_google-1.0.4 Rakefile
foreman_google-1.0.3 Rakefile
foreman_google-1.0.2 Rakefile
foreman_google-1.0.1 Rakefile
foreman_google-1.0.0 Rakefile
foreman_google-0.0.2 Rakefile
foreman_google-0.0.1 Rakefile