Sha256: d5abbef5e161741e371d4f45fdf7621475e9816345fc808cdd5d00a2b6e0a3e2

Contents?: true

Size: 545 Bytes

Versions: 9

Compression:

Stored size: 545 Bytes

Contents

require 'rubygems'
require 'bundler'
Bundler.require
require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

desc "run travis build"
task :travis do
  exec "bundle exec rake SPEC_OPTS='--format documentation -t ~docker --order=rand'"
end

namespace :remote do
  desc "run box"
  task :up do
    exec "vagrant up --provider=rackspace"
  end

  desc "destroy box"
  task :down do
    exec "vagrant destroy -f"
  end

  desc "run spec on rackspace box"
  task :spec do
    1
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
vx-lib-container-0.6.3 Rakefile
vx-lib-container-0.6.2 Rakefile
vx-lib-container-0.6.1 Rakefile
vx-lib-container-0.6.0 Rakefile
vx-lib-container-0.5.11 Rakefile
vx-lib-container-0.5.10 Rakefile
vx-lib-container-0.5.9 Rakefile
vx-lib-container-0.5.8 Rakefile
vx-lib-container-0.5.7 Rakefile