Sha256: 8a7a1007887e094d89df0c4aaac2fbbb89b94373e1075d6abdb2ee51279e9539

Contents?: true

Size: 817 Bytes

Versions: 6

Compression:

Stored size: 817 Bytes

Contents

# A Rakefile is like a Makefile for ruby

# bundler/gem_tasks provides functionality like:
#   bundle exec rake build
#   bundle exec rake install
#   bundle exec rake release
#
require 'bundler/gem_tasks'

# rake/clean provides CLEAN/CLOBBER
# http://www.virtuouscode.com/2014/04/28/rake-part-6-clean-and-clobber/
# CLEAN - list to let rake know what files can be cleaned up after build
# CLOBBER - list to let rake know what files are final products of the build
#
require 'rake/clean'


# Add the build dir to the list of items to clean up
CLEAN.include('build')

# We want to keep the build artifacts in the pkg dir
CLOBBER.include('pkg')

# Define a Rake::Task that will do initialization for us
# See http://www.ultrasaurus.com/2009/12/creating-a-custom-rake-task/
task :init do
  FileUtils.mkdir_p 'build'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vagrant-sshfs-1.3.7 Rakefile
vagrant-sshfs-1.3.6 Rakefile
vagrant-sshfs-1.3.5 Rakefile
vagrant-sshfs-1.3.4 Rakefile
vagrant-sshfs-1.3.3 Rakefile
vagrant-sshfs-1.3.2 Rakefile