Sha256: 0070bd141746b952b35f41d174db842192f54d2a139f5c96eb98244702ac128a

Contents?: true

Size: 429 Bytes

Versions: 1

Compression:

Stored size: 429 Bytes

Contents

#!/usr/bin/env ruby
$LOAD_PATH << File.expand_path('../../lib', __FILE__)

require 'rubygems'
require 'dotman'

case ARGV.first
when 'clone'
  Dotman::Base.ensure_dotman_folder_exists
  Dotman::Git.klone(ARGV[1], ARGV[2])
when 'use'
  Dotman::User.set(ARGV[1])
else
  puts "USAGE:\ndot clone git_repository alias : clone the dotfiles repo\ndot use alias : use the dotfiles\ndot use default : switch to the default dot files"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dotman-0.0.3 bin/dot