svn_command_helper 0.3.7 → 0.3.8
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.
- checksums.yaml +4 -4
- data/lib/svn_command_helper.rb +2 -2
- data/lib/svn_command_helper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5026f85c3ae81b6969d453fb062721f083dade96
|
|
4
|
+
data.tar.gz: 198bb4bd21377566fe2f26407954e590e374bde8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3265d6ec6398c410c732e3387586b9fe5082f023f08c32bc4c02a13e3ad224696e544ca7e62301d9b2ca66de10e42532bc95fbae56b2cc8728006efd50b0622
|
|
7
|
+
data.tar.gz: 55a33dea9a2ff32beada581139ec1a461be3af6dced99efed9db0894f2c7fa46881ec4080a6f281f994b03fc1e80bb5c5b12c3cd1249941a713b6331b6b57053
|
data/lib/svn_command_helper.rb
CHANGED
|
@@ -121,8 +121,8 @@ module SvnCommandHelper
|
|
|
121
121
|
until File.exist?(exist_path)
|
|
122
122
|
exist_path = File.dirname(exist_path)
|
|
123
123
|
end
|
|
124
|
-
root = Pathname.new(Svn.working_copy_root_path(exist_path))
|
|
125
|
-
end_path = Pathname.new(path.to_s).expand_path
|
|
124
|
+
root = Pathname.new(Svn.working_copy_root_path(exist_path))
|
|
125
|
+
end_path = Pathname.new(path.to_s).expand_path
|
|
126
126
|
parents = [end_path]
|
|
127
127
|
while parents.first != root
|
|
128
128
|
parents.unshift(parents.first.parent)
|