gold 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +5 -0
- data/lib/gold.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/gold.rb
CHANGED
|
@@ -122,7 +122,7 @@ gold review #{developer_name}/#{branch}
|
|
|
122
122
|
return error("Could not checkout #{remote}_#{branch}.") unless system("git co -b #{remote}_#{branch}")
|
|
123
123
|
return error("Could not pull #{remote_branch}.") unless system("git pull #{remote} #{branch}")
|
|
124
124
|
return error("Could not rebase.") unless system("git rebase #{gold_master}")
|
|
125
|
-
system("git diff
|
|
125
|
+
system("git diff #{gold_master} | $EDITOR")
|
|
126
126
|
true
|
|
127
127
|
end
|
|
128
128
|
|