svn_command_helper 0.3.8 → 0.3.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5026f85c3ae81b6969d453fb062721f083dade96
4
- data.tar.gz: 198bb4bd21377566fe2f26407954e590e374bde8
3
+ metadata.gz: 655cd1cac60124bbd87ab0f15f36f577e7ccacf1
4
+ data.tar.gz: 28103a1f64ca7457dbdef22966bf7e98526fb29a
5
5
  SHA512:
6
- metadata.gz: e3265d6ec6398c410c732e3387586b9fe5082f023f08c32bc4c02a13e3ad224696e544ca7e62301d9b2ca66de10e42532bc95fbae56b2cc8728006efd50b0622
7
- data.tar.gz: 55a33dea9a2ff32beada581139ec1a461be3af6dced99efed9db0894f2c7fa46881ec4080a6f281f994b03fc1e80bb5c5b12c3cd1249941a713b6331b6b57053
6
+ metadata.gz: 3b1f6c4d5e6fbf0eddbc286358f6c64e0ee3b8248ebc95493f85c99d22146d451bdf18edd1466b4a150a0d0bb63bd6cd407591df66b5148eded20f904ba9b7a2
7
+ data.tar.gz: 8fecd1a1ec2529943fe7348576f33348701a043f2ec5f3595d9712293296bad350b9267c10a43ffe08878ed1763343cb4083ef5338342311408ec26d6685b45a
@@ -1,4 +1,4 @@
1
1
  module SvnCommandHelper
2
2
  # version
3
- VERSION = "0.3.8"
3
+ VERSION = "0.3.9"
4
4
  end
@@ -189,7 +189,7 @@ module SvnCommandHelper
189
189
  end
190
190
  sys "svn update --set-depth infinity #{to_exist_transactions.map(&:file).join(' ')}"
191
191
  to_exist_transactions.each do |_transaction|
192
- sys "svn merge --accept theirs-full #{_transaction.from} #{_transaction.file}"
192
+ sys "svn merge --accept theirs-full --ignore-ancestry #{_transaction.from} #{_transaction.file}"
193
193
  end
194
194
  Svn.commit(message, ".")
195
195
  end
@@ -213,7 +213,7 @@ module SvnCommandHelper
213
213
  Svn.update_deep(relative_to, "empty") # mkpath的な なくてもエラーにはならないので
214
214
 
215
215
  if transaction.to_exist? # toがある場合マージ
216
- sys "svn merge --accept theirs-full #{transaction.from} #{relative_to}"
216
+ sys "svn merge --accept theirs-full --ignore-ancestry #{transaction.from} #{relative_to}"
217
217
  else # toがない場合コピー
218
218
  sys "svn copy --parents #{transaction.from} #{relative_to}"
219
219
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svn_command_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.8
4
+ version: 0.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Narazaka