Sha256: f109ccc772904f9bb6509a56a70ef5760e0c353cdb79474d4466539abfeb126f

Contents?: true

Size: 1.12 KB

Versions: 26

Compression:

Stored size: 1.12 KB

Contents

# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'rubygems'
require 'bundler/setup'

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

# Load all the rake tasks from the "tasks" folder. This folder
# allows us to nicely separate rake tasks into individual files
# based on their role, which makes development and debugging easier
# than one monolithic file.
task_dir = File.expand_path("../tasks", __FILE__)
Dir["#{task_dir}/**/*.rake"].each do |task_file|
  load task_file
end

task default: "test:unit"

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
vagrant-google-2.7.0 Rakefile
vagrant-google-2.6.0 Rakefile
vagrant-google-2.5.0 Rakefile
vagrant-google-2.4.0 Rakefile
vagrant-google-2.4.0.rc0 Rakefile
vagrant-google-2.3.0 Rakefile
vagrant-google-2.3.0.rc0 Rakefile
vagrant-google-2.2.1 Rakefile
vagrant-google-2.2.0 Rakefile
vagrant-google-2.2.0.rc0 Rakefile
vagrant-google-2.1.0 Rakefile
vagrant-google-2.0.0 Rakefile
vagrant-google-2.0.0.rc1 Rakefile
vagrant-google-2.0.0.rc0 Rakefile
vagrant-google-1.0.0 Rakefile
vagrant-google-1.0.0.rc0 Rakefile
vagrant-google-0.2.5 Rakefile
vagrant-google-0.2.5.rc0 Rakefile
vagrant-google-0.2.4 Rakefile
vagrant-google-0.2.3 Rakefile