This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# --------------------------------------------------------- | |
# Customizable Settings | |
# --------------------------------------------------------- | |
# where to store the sparse-image | |
WORKSPACE=${HOME}/.workspace.dmg.sparseimage | |
# location where workspace will be mounted |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# = Hash Recursive Merge | |
# | |
# Merges a Ruby Hash recursively, Also known as deep merge. | |
# Recursive version of Hash#merge and Hash#merge!. | |
# | |
# Category:: Ruby | |
# Package:: Hash | |
# Author:: Simone Carletti <[email protected]> | |
# Copyright:: 2007-2008 The Authors |