Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b3a8f8533 | ||
|
|
412558f9ad | ||
|
|
73d890652e | ||
|
|
ba84df0137 | ||
|
|
8be582a4cb | ||
|
|
b80b132a7a | ||
|
|
bf66d91b1f | ||
|
|
ce0d9b9d02 | ||
|
|
78e952c2e4 | ||
|
|
de0b14bbd6 |
@@ -1,8 +1,16 @@
|
||||
# 2.0.0
|
||||
|
||||
* Better support for recognizing git urls (thanks jacobat!)
|
||||
* if it looks like a github user/repo, do that
|
||||
* otherwise hand off to git clone
|
||||
* Listing now displays in color, and show git remote
|
||||
* Support pretend, force, and quiet modes
|
||||
|
||||
# 0.1.1
|
||||
|
||||
* Fixed trying to link against castles that don't exist
|
||||
* Fixed linking, which tries to exclude . and .. from the list of files to
|
||||
link (thanks Martinos)
|
||||
link (thanks Martinos!)
|
||||
|
||||
# 0.1.0
|
||||
|
||||
|
||||
2
Rakefile
2
Rakefile
@@ -22,7 +22,7 @@ Jeweler::Tasks.new do |gem|
|
||||
gem.email = "josh@technicalpickles.com"
|
||||
gem.homepage = "http://github.com/technicalpickles/homesick"
|
||||
gem.authors = ["Joshua Nichols"]
|
||||
gem.version = "0.1.1"
|
||||
gem.version = "0.2.0"
|
||||
# Have dependencies? Add them to Gemfile
|
||||
|
||||
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
||||
|
||||
@@ -5,11 +5,11 @@
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{homesick}
|
||||
s.version = "0.1.1"
|
||||
s.version = "0.2.0"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Joshua Nichols"]
|
||||
s.date = %q{2010-03-17}
|
||||
s.date = %q{2010-03-19}
|
||||
s.default_executable = %q{homesick}
|
||||
s.description = %q{
|
||||
A man’s home (directory) is his castle, so don’t leave home with out it.
|
||||
@@ -35,6 +35,8 @@ Gem::Specification.new do |s|
|
||||
"bin/homesick",
|
||||
"homesick.gemspec",
|
||||
"lib/homesick.rb",
|
||||
"lib/homesick/actions.rb",
|
||||
"lib/homesick/shell.rb",
|
||||
"spec/homesick/homesick_spec.rb",
|
||||
"spec/spec.opts",
|
||||
"spec/spec_helper.rb"
|
||||
|
||||
@@ -1,40 +1,29 @@
|
||||
require 'thor'
|
||||
|
||||
class Homesick < Thor
|
||||
autoload :Shell, 'homesick/shell'
|
||||
autoload :Actions, 'homesick/actions'
|
||||
|
||||
include Thor::Actions
|
||||
include Homesick::Actions
|
||||
|
||||
# Hack in support for diffing symlinks
|
||||
class Shell < Thor::Shell::Color
|
||||
add_runtime_options!
|
||||
|
||||
def show_diff(destination, content)
|
||||
destination = Pathname.new(destination)
|
||||
|
||||
if destination.symlink?
|
||||
say "- #{destination.readlink}", :red, true
|
||||
say "+ #{content.expand_path}", :green, true
|
||||
else
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
GITHUB_NAME_REPO_PATTERN = /\A([A-Za-z_-]+)\/([A-Za-z_-]+)\Z/
|
||||
|
||||
def initialize(args=[], options={}, config={})
|
||||
super
|
||||
self.shell = Homesick::Shell.new
|
||||
end
|
||||
|
||||
GIT_URI_PATTERN = /^git:\/\//
|
||||
GITHUB_NAME_REPO_PATTERN = /([A-Za-z_-]+)\/([A-Za-z_-]+)/
|
||||
|
||||
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 =~ GIT_URI_PATTERN
|
||||
if uri =~ GITHUB_NAME_REPO_PATTERN
|
||||
git_clone "git://github.com/#{$1}/#{$2}.git", :destination => "#{$1}_#{$2}"
|
||||
else
|
||||
git_clone uri
|
||||
elsif uri =~ GITHUB_NAME_REPO_PATTERN
|
||||
git_clone "git://github.com/#{$1}/#{$2}.git", "#{$1}_#{$2}"
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -67,7 +56,9 @@ class Homesick < Thor
|
||||
def list
|
||||
inside repos_dir do
|
||||
Pathname.glob('*') do |home|
|
||||
puts home
|
||||
inside home do
|
||||
say_status home, `git config remote.origin.url`, :cyan
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -90,43 +81,6 @@ class Homesick < Thor
|
||||
|
||||
protected
|
||||
|
||||
# TODO move this to be more like thor's template, empty_directory, etc
|
||||
def git_clone(repo, config = {})
|
||||
config ||= {}
|
||||
destination = config[:destination] || begin
|
||||
repo =~ /([^\/]+)\.git$/
|
||||
$1
|
||||
end
|
||||
|
||||
destination = Pathname.new(destination) unless destination.kind_of?(Pathname)
|
||||
|
||||
if ! destination.directory?
|
||||
say_status 'git clone', "#{repo} to #{destination.expand_path}", :green if config.fetch(:verbose, true)
|
||||
system "git clone #{repo} #{destination}" unless options[:pretend]
|
||||
else
|
||||
say_status :exist, destination.expand_path, :blue
|
||||
end
|
||||
end
|
||||
|
||||
def symlink(source, destination, config = {})
|
||||
destination = Pathname.new(destination)
|
||||
|
||||
if destination.symlink?
|
||||
if destination.readlink == source
|
||||
say_status :identical, destination.expand_path, :blue
|
||||
else
|
||||
say_status :conflict, "#{destination} exists and points to #{destination.readlink}", :red
|
||||
|
||||
if shell.file_collision(destination) { source }
|
||||
system "ln -sf #{source} #{destination}"
|
||||
end
|
||||
end
|
||||
else
|
||||
say_status :symlink, "#{source.expand_path} to #{destination.expand_path}", :green
|
||||
system "ln -s #{source} #{destination}"
|
||||
end
|
||||
end
|
||||
|
||||
def user_dir
|
||||
self.class.user_dir
|
||||
end
|
||||
|
||||
40
lib/homesick/actions.rb
Normal file
40
lib/homesick/actions.rb
Normal file
@@ -0,0 +1,40 @@
|
||||
class Homesick
|
||||
module Actions
|
||||
# TODO move this to be more like thor's template, empty_directory, etc
|
||||
def git_clone(repo, config = {})
|
||||
config ||= {}
|
||||
destination = config[:destination] || begin
|
||||
repo =~ /([^\/]+)\.git$/
|
||||
$1
|
||||
end
|
||||
|
||||
destination = Pathname.new(destination) unless destination.kind_of?(Pathname)
|
||||
|
||||
if ! destination.directory?
|
||||
say_status 'git clone', "#{repo} to #{destination.expand_path}", :green unless options[:quiet]
|
||||
system "git clone -q #{repo} #{destination}" unless options[:pretend]
|
||||
else
|
||||
say_status :exist, destination.expand_path, :blue unless options[:quiet]
|
||||
end
|
||||
end
|
||||
|
||||
def symlink(source, destination, config = {})
|
||||
destination = Pathname.new(destination)
|
||||
|
||||
if destination.symlink?
|
||||
if destination.readlink == source
|
||||
say_status :identical, destination.expand_path, :blue unless options[:quiet]
|
||||
else
|
||||
say_status :conflict, "#{destination} exists and points to #{destination.readlink}", :red unless options[:quiet]
|
||||
|
||||
if shell.file_collision(destination) { source }
|
||||
system "ln -sf #{source} #{destination}" unless options[:pretend]
|
||||
end
|
||||
end
|
||||
else
|
||||
say_status :symlink, "#{source.expand_path} to #{destination.expand_path}", :green unless options[:quiet]
|
||||
system "ln -s #{source} #{destination}" unless options[:pretend]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
17
lib/homesick/shell.rb
Normal file
17
lib/homesick/shell.rb
Normal file
@@ -0,0 +1,17 @@
|
||||
class Homesick
|
||||
# Hack in support for diffing symlinks
|
||||
class Shell < Thor::Shell::Color
|
||||
|
||||
def show_diff(destination, content)
|
||||
destination = Pathname.new(destination)
|
||||
|
||||
if destination.symlink?
|
||||
say "- #{destination.readlink}", :red, true
|
||||
say "+ #{content.expand_path}", :green, true
|
||||
else
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user