diff --git a/homesick.gemspec b/homesick.gemspec index dcaf7d8..a30e75f 100644 --- a/homesick.gemspec +++ b/homesick.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| 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" diff --git a/lib/homesick.rb b/lib/homesick.rb index 7e453ee..6708370 100644 --- a/lib/homesick.rb +++ b/lib/homesick.rb @@ -57,7 +57,7 @@ class Homesick < Thor inside repos_dir do Pathname.glob('*') do |home| inside home do - say_status home, `git config remote.origin.url` + say_status home, `git config remote.origin.url`, :cyan end end end