Sha256: 8636ee40ffffe4249e43e64dc913cc27b4ccf7973a704a9d96dc3a464d27b496
Contents?: true
Size: 640 Bytes
Versions: 3
Compression:
Stored size: 640 Bytes
Contents
require 'rubygems' require 'bundler/setup' require 'coveralls' Coveralls.wear! require 'minitest/autorun' Encoding.default_external = Encoding::UTF_8 Encoding.default_internal = Encoding::UTF_8 # 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 task :test do $LOAD_PATH.unshift('lib', 'test') Dir.glob('./test/*_test.rb') do |f| require f end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-logs-0.1.1 | Rakefile |
vagrant-logs-0.1.0 | Rakefile |
vagrant-logs-0.0.1 | Rakefile |