93 lines
1.9 KiB
Ruby
93 lines
1.9 KiB
Ruby
require 'thor'
|
|
|
|
class Homesick < Thor
|
|
autoload :Shell, 'homesick/shell'
|
|
autoload :Actions, 'homesick/actions'
|
|
|
|
include Thor::Actions
|
|
include Homesick::Actions
|
|
|
|
add_runtime_options!
|
|
|
|
GITHUB_NAME_REPO_PATTERN = /\A([A-Za-z_-]+)\/([A-Za-z_-]+)\Z/
|
|
|
|
def initialize(args=[], options={}, config={})
|
|
super
|
|
self.shell = Homesick::Shell.new
|
|
end
|
|
|
|
desc "clone URI", "Clone +uri+ as a castle for homesick"
|
|
def clone(uri)
|
|
empty_directory repos_dir, :verbose => false
|
|
inside repos_dir do
|
|
if uri =~ GITHUB_NAME_REPO_PATTERN
|
|
git_clone "git://github.com/#{$1}/#{$2}.git", :destination => "#{$1}_#{$2}"
|
|
else
|
|
git_clone uri
|
|
end
|
|
end
|
|
end
|
|
|
|
desc "link NAME", "Symlinks all dotfiles from the specified castle"
|
|
def link(home)
|
|
unless castle_dir(home).exist?
|
|
say_status :error, "Castle #{home} did not exist in #{repos_dir}", :red
|
|
|
|
exit(1)
|
|
|
|
else
|
|
inside castle_dir(home) do
|
|
files = Pathname.glob('.*').reject{|a| [".",".."].include?(a.to_s)}
|
|
files.each do |path|
|
|
absolute_path = path.expand_path
|
|
|
|
inside user_dir do
|
|
adjusted_path = (user_dir + path).basename
|
|
|
|
symlink absolute_path, adjusted_path
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
desc "list", "List cloned castles"
|
|
def list
|
|
inside repos_dir do
|
|
Pathname.glob('*') do |home|
|
|
inside home do
|
|
say_status home, `git config remote.origin.url`, :cyan
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
no_tasks do
|
|
# class method, so it's convenient to stub out during tests
|
|
def self.user_dir
|
|
@user_dir ||= Pathname.new('~').expand_path
|
|
end
|
|
|
|
def self.repos_dir
|
|
@repos_dir ||= Pathname.new('~/.homesick/repos').expand_path
|
|
end
|
|
|
|
def repos_dir
|
|
self.class.repos_dir
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def user_dir
|
|
self.class.user_dir
|
|
end
|
|
|
|
def castle_dir(name)
|
|
repos_dir.join(name, 'home')
|
|
end
|
|
|
|
end
|