locate_guard chomp newline at end of path
This commit is contained in:
parent
5371f467ff
commit
3cdcea3dfd
@ -55,7 +55,7 @@ module Guard
|
|||||||
end
|
end
|
||||||
|
|
||||||
def locate_guard(name)
|
def locate_guard(name)
|
||||||
`gem open guard-#{name} --latest --command echo`
|
`gem open guard-#{name} --latest --command echo`.chomp
|
||||||
rescue
|
rescue
|
||||||
UI.error "Could not find 'guard-#{name}' gem path."
|
UI.error "Could not find 'guard-#{name}' gem path."
|
||||||
end
|
end
|
||||||
|
@ -13,7 +13,9 @@ describe Guard do
|
|||||||
describe "locate_guard" do
|
describe "locate_guard" do
|
||||||
|
|
||||||
it "should return guard-rspec gem path" do
|
it "should return guard-rspec gem path" do
|
||||||
Guard.locate_guard('rspec').should match(/^.*\/guard-rspec-.*$/)
|
guard_path = Guard.locate_guard('rspec')
|
||||||
|
guard_path.should match(/^.*\/guard-rspec-.*$/)
|
||||||
|
guard_path.should == guard_path.chomp
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user