Cyan list instead of green.

This commit is contained in:
Joshua Nichols
2010-03-19 00:28:08 -04:00
parent 8be582a4cb
commit ba84df0137
2 changed files with 4 additions and 2 deletions

View File

@@ -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.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Joshua Nichols"] s.authors = ["Joshua Nichols"]
s.date = %q{2010-03-17} s.date = %q{2010-03-19}
s.default_executable = %q{homesick} s.default_executable = %q{homesick}
s.description = %q{ s.description = %q{
A mans home (directory) is his castle, so dont leave home with out it. A mans home (directory) is his castle, so dont leave home with out it.
@@ -35,6 +35,8 @@ Gem::Specification.new do |s|
"bin/homesick", "bin/homesick",
"homesick.gemspec", "homesick.gemspec",
"lib/homesick.rb", "lib/homesick.rb",
"lib/homesick/actions.rb",
"lib/homesick/shell.rb",
"spec/homesick/homesick_spec.rb", "spec/homesick/homesick_spec.rb",
"spec/spec.opts", "spec/spec.opts",
"spec/spec_helper.rb" "spec/spec_helper.rb"

View File

@@ -57,7 +57,7 @@ class Homesick < Thor
inside repos_dir do inside repos_dir do
Pathname.glob('*') do |home| Pathname.glob('*') do |home|
inside home do inside home do
say_status home, `git config remote.origin.url` say_status home, `git config remote.origin.url`, :cyan
end end
end end
end end