Sha256: 8fe7c6cee1395deefc43cccb6fe3bcb6c7762b6751cdf3ad7a29fd723848045a
Contents?: true
Size: 557 Bytes
Versions: 7
Compression:
Stored size: 557 Bytes
Contents
require 'bundler/gem_tasks' 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
7 entries across 7 versions & 1 rubygems