Sha256: 7d6958e82628a26db003406f5b123cbbb1575526aa7df3da56cb59fcd0b56264

Contents?: true

Size: 766 Bytes

Versions: 57

Compression:

Stored size: 766 Bytes

Contents

# frozen_string_literal: true

require 'rubygems'
require 'bundler/setup'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'net/ssh'

# Immediately sync all stdout so that tools like buildbot can
# immediately load in the output.
$stdout.sync = true
$stderr.sync = true

# Change to the directory of this file.
Dir.chdir(File.expand_path(__dir__))

# This installs the tasks that help with gem creation and
# publishing.
Bundler::GemHelper.install_tasks

# Install the `spec` task so that we can run tests.
RSpec::Core::RakeTask.new

# Install the `rubocop` task
RuboCop::RakeTask.new

RuboCop::RakeTask.new(:rubocoplayout) do |t|
  t.options = ['--auto-correct --only ']
end

# Default task is to run the unit tests
task default: %w[rubocop spec]

Version data entries

57 entries across 57 versions & 2 rubygems

Version Path
vagrant-zones-0.1.98 Rakefile
vagrant-zones-0.1.97 Rakefile
vagrant-zones-0.1.96 Rakefile
vagrant-local-0.0.3 Rakefile
vagrant-local-0.0.2 Rakefile
vagrant-local-0.0.1 Rakefile
vagrant-zones-0.1.94 Rakefile
vagrant-zones-0.1.93 Rakefile
vagrant-zones-0.1.92 Rakefile
vagrant-zones-0.1.91 Rakefile
vagrant-zones-0.1.90 Rakefile
vagrant-zones-0.1.89 Rakefile
vagrant-zones-0.1.88 Rakefile
vagrant-zones-0.1.87 Rakefile
vagrant-zones-0.1.86 Rakefile
vagrant-zones-0.1.85 Rakefile
vagrant-zones-0.1.84 Rakefile
vagrant-zones-0.1.83 Rakefile
vagrant-zones-0.1.82 Rakefile
vagrant-zones-0.1.81 Rakefile