Sha256: 6ed885bc45408af0bea6d780969ba6a26e58f1024a386b93a412e2672335f7df
Contents?: true
Size: 1.12 KB
Versions: 3
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' require 'rspec/core/rake_task' # 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("../", __FILE__)) # 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 # Default task is to run the unit tests task :default => "spec"
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
tcr-vagrant-google-0.1.4 | Rakefile |
vagrant-google-0.1.4 | Rakefile |
vagrant-google-0.1.3 | Rakefile |