zold 0.21.1 → 0.21.2

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.
Files changed (157) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/.rultor.yml +0 -16
  4. data/.simplecov +1 -1
  5. data/Gemfile +2 -2
  6. data/Rakefile +3 -2
  7. data/bin/zold +1 -1
  8. data/features/step_definitions/steps.rb +1 -1
  9. data/features/support/env.rb +1 -1
  10. data/fixtures/merge/asserts.rb +1 -1
  11. data/fixtures/merge/into-no-wallet/assert.rb +1 -1
  12. data/fixtures/merge/random-expenses/assert.rb +1 -1
  13. data/fixtures/merge/simple-case/assert.rb +1 -1
  14. data/lib/zold.rb +1 -1
  15. data/lib/zold/age.rb +1 -1
  16. data/lib/zold/amount.rb +1 -1
  17. data/lib/zold/cached_wallets.rb +1 -1
  18. data/lib/zold/commands/args.rb +1 -1
  19. data/lib/zold/commands/calculate.rb +1 -1
  20. data/lib/zold/commands/clean.rb +1 -1
  21. data/lib/zold/commands/create.rb +1 -1
  22. data/lib/zold/commands/diff.rb +1 -1
  23. data/lib/zold/commands/fetch.rb +1 -1
  24. data/lib/zold/commands/invoice.rb +1 -1
  25. data/lib/zold/commands/list.rb +1 -1
  26. data/lib/zold/commands/merge.rb +1 -1
  27. data/lib/zold/commands/next.rb +1 -1
  28. data/lib/zold/commands/node.rb +1 -1
  29. data/lib/zold/commands/pay.rb +1 -1
  30. data/lib/zold/commands/propagate.rb +1 -1
  31. data/lib/zold/commands/pull.rb +1 -1
  32. data/lib/zold/commands/push.rb +5 -5
  33. data/lib/zold/commands/remote.rb +1 -1
  34. data/lib/zold/commands/remove.rb +1 -1
  35. data/lib/zold/commands/routines/audit.rb +1 -1
  36. data/lib/zold/commands/routines/gc.rb +1 -1
  37. data/lib/zold/commands/routines/reconnect.rb +1 -1
  38. data/lib/zold/commands/show.rb +1 -1
  39. data/lib/zold/commands/taxes.rb +1 -1
  40. data/lib/zold/commands/thread_badge.rb +1 -1
  41. data/lib/zold/copies.rb +1 -1
  42. data/lib/zold/dir_items.rb +2 -2
  43. data/lib/zold/endless.rb +1 -1
  44. data/lib/zold/gem.rb +1 -1
  45. data/lib/zold/head.rb +1 -1
  46. data/lib/zold/hexnum.rb +1 -1
  47. data/lib/zold/http.rb +1 -1
  48. data/lib/zold/hungry_wallets.rb +1 -1
  49. data/lib/zold/id.rb +1 -1
  50. data/lib/zold/json_page.rb +1 -1
  51. data/lib/zold/key.rb +1 -1
  52. data/lib/zold/log.rb +1 -1
  53. data/lib/zold/metronome.rb +1 -1
  54. data/lib/zold/node/async_entrance.rb +1 -1
  55. data/lib/zold/node/emission.rb +1 -1
  56. data/lib/zold/node/entrance.rb +1 -1
  57. data/lib/zold/node/farm.rb +2 -2
  58. data/lib/zold/node/farmers.rb +1 -1
  59. data/lib/zold/node/front.rb +17 -1
  60. data/lib/zold/node/nodup_entrance.rb +1 -1
  61. data/lib/zold/node/nospam_entrance.rb +1 -1
  62. data/lib/zold/node/safe_entrance.rb +1 -1
  63. data/lib/zold/node/soft_error.rb +1 -1
  64. data/lib/zold/node/spread_entrance.rb +1 -1
  65. data/lib/zold/node/sync_entrance.rb +1 -1
  66. data/lib/zold/node/trace.rb +1 -1
  67. data/lib/zold/patch.rb +1 -1
  68. data/lib/zold/prefixes.rb +1 -1
  69. data/lib/zold/remotes.rb +1 -1
  70. data/lib/zold/signature.rb +1 -1
  71. data/lib/zold/size.rb +4 -3
  72. data/lib/zold/sync_wallets.rb +1 -1
  73. data/lib/zold/tax.rb +1 -1
  74. data/lib/zold/thread_pool.rb +2 -1
  75. data/lib/zold/tree_wallets.rb +1 -1
  76. data/lib/zold/txn.rb +11 -1
  77. data/lib/zold/txns.rb +1 -1
  78. data/lib/zold/upgrades.rb +1 -1
  79. data/lib/zold/verbose_thread.rb +1 -1
  80. data/lib/zold/version.rb +2 -2
  81. data/lib/zold/version_file.rb +1 -1
  82. data/lib/zold/wallet.rb +1 -1
  83. data/lib/zold/wallets.rb +1 -1
  84. data/resources/masters +0 -1
  85. data/test/commands/routines/test_audit.rb +1 -1
  86. data/test/commands/routines/test_gc.rb +1 -1
  87. data/test/commands/routines/test_reconnect.rb +1 -1
  88. data/test/commands/test_calculate.rb +1 -1
  89. data/test/commands/test_clean.rb +1 -1
  90. data/test/commands/test_create.rb +1 -1
  91. data/test/commands/test_diff.rb +1 -1
  92. data/test/commands/test_fetch.rb +1 -1
  93. data/test/commands/test_invoice.rb +1 -1
  94. data/test/commands/test_list.rb +1 -1
  95. data/test/commands/test_merge.rb +1 -1
  96. data/test/commands/test_node.rb +1 -1
  97. data/test/commands/test_pay.rb +1 -1
  98. data/test/commands/test_propagate.rb +1 -1
  99. data/test/commands/test_pull.rb +1 -1
  100. data/test/commands/test_push.rb +1 -1
  101. data/test/commands/test_remote.rb +1 -1
  102. data/test/commands/test_remove.rb +1 -1
  103. data/test/commands/test_show.rb +1 -1
  104. data/test/commands/test_taxes.rb +1 -1
  105. data/test/fake_home.rb +1 -1
  106. data/test/node/fake_entrance.rb +1 -1
  107. data/test/node/fake_node.rb +1 -1
  108. data/test/node/test_async_entrance.rb +1 -1
  109. data/test/node/test_emission.rb +1 -1
  110. data/test/node/test_entrance.rb +1 -1
  111. data/test/node/test_farm.rb +1 -1
  112. data/test/node/test_farmers.rb +1 -1
  113. data/test/node/test_front.rb +16 -1
  114. data/test/node/test_nodup_entrance.rb +1 -1
  115. data/test/node/test_nospam_entrance.rb +1 -1
  116. data/test/node/test_safe_entrance.rb +1 -1
  117. data/test/node/test_spread_entrance.rb +1 -1
  118. data/test/node/test_sync_entrance.rb +1 -1
  119. data/test/node/test_trace.rb +1 -1
  120. data/test/test__helper.rb +1 -1
  121. data/test/test_age.rb +1 -1
  122. data/test/test_amount.rb +1 -1
  123. data/test/test_cached_wallets.rb +1 -1
  124. data/test/test_copies.rb +1 -1
  125. data/test/test_dir_items.rb +1 -1
  126. data/test/test_hexnum.rb +1 -1
  127. data/test/test_http.rb +1 -1
  128. data/test/test_hungry_wallets.rb +1 -1
  129. data/test/test_id.rb +1 -1
  130. data/test/test_json_page.rb +1 -1
  131. data/test/test_key.rb +1 -1
  132. data/test/test_log.rb +1 -1
  133. data/test/test_metronome.rb +1 -1
  134. data/test/test_patch.rb +1 -1
  135. data/test/test_prefixes.rb +1 -1
  136. data/test/test_remotes.rb +2 -2
  137. data/test/test_signature.rb +1 -1
  138. data/test/test_size.rb +1 -1
  139. data/test/test_sync_wallets.rb +1 -1
  140. data/test/test_tax.rb +1 -1
  141. data/test/test_thread_pool.rb +1 -1
  142. data/test/test_tree_wallets.rb +1 -1
  143. data/test/test_txn.rb +1 -1
  144. data/test/test_upgrades.rb +1 -1
  145. data/test/test_verbose_thread.rb +1 -1
  146. data/test/test_wallet.rb +2 -1
  147. data/test/test_wallets.rb +1 -1
  148. data/test/test_zold.rb +1 -1
  149. data/test/upgrades/test_protocol_up.rb +1 -1
  150. data/upgrades/2.rb +1 -1
  151. data/upgrades/move_wallets_into_tree.rb +1 -1
  152. data/upgrades/protocol_up.rb +1 -1
  153. data/upgrades/rename_foreign_wallets.rb +1 -1
  154. data/zold.gemspec +10 -10
  155. metadata +79 -83
  156. data/Procfile +0 -1
  157. data/heroku-run.sh +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a04c52513e6e44079e0e39a5245cf1075fe740990fa73b94c44217214bb0272
4
- data.tar.gz: f9b6b3183b4f587184557dfa88af90a45511098af6b9682e08a113976a618b24
3
+ metadata.gz: f59929d65212d37d32f1f98418735329e8194520b349f74c44dca7409ed610e4
4
+ data.tar.gz: 3d81af110e3e5835272484ee0a0b420e6f58bd87b9b035faba6a48f2d16f697c
5
5
  SHA512:
6
- metadata.gz: dc7ca238f71aa8c628c535f5e65a017c24293cedba569995ec8e0006bf082c3f2ccf2049e85f67bfbc59039fe3e898ed3438a8ed26a389010f18972a1d9e1005
7
- data.tar.gz: 9d2a309a544d9b0199bd732edb15ca08458e76b293f75dbe90d498f1eda6457927f83f7818aec3b5dcfb53e64a5c5764fbcfd0e00d827e0be8f839691e7c9025
6
+ metadata.gz: 3e88d9c8d354a0181c054a21ddbab493bc8161463112b18436777fa814d714b9ada75c70fe6703f06bfec564a3cd26c6b149496cd33490ce9539a1b498f10d42
7
+ data.tar.gz: 7f85bacbe457dc46ee7ae4a46fba59211e16db5e35c951eef6a48e0500ee827c8deb78b91ee7e71c0f750bf335f62e3e2cf6460fc4afdd0772388063ab9b2c9c
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ AllCops:
3
3
  - 'bin/**/*'
4
4
  - 'assets/**/*'
5
5
  DisplayCopNames: true
6
- TargetRubyVersion: 2.5.1
6
+ TargetRubyVersion: 2.5
7
7
 
8
8
  Layout/EmptyLineAfterGuardClause:
9
9
  Enabled: false
data/.rultor.yml CHANGED
@@ -1,7 +1,5 @@
1
1
  assets:
2
2
  rubygems.yml: zerocracy/home#assets/rubygems.yml
3
- id_rsa: zerocracy/home#assets/heroku-key
4
- id_rsa.pub: zerocracy/home#assets/heroku-key.pub
5
3
  install: |
6
4
  export GEM_HOME=~/.ruby
7
5
  export GEM_PATH=$GEM_HOME:$GEM_PATH
@@ -24,20 +22,6 @@ release:
24
22
  gem build zold.gemspec
25
23
  chmod 0600 ../rubygems.yml
26
24
  gem push *.gem --config-file ../rubygems.yml
27
- git remote add heroku git@heroku.com:zold.git
28
- rm -rf ~/.ssh
29
- mkdir ~/.ssh
30
- mv ../id_rsa ../id_rsa.pub ~/.ssh
31
- chmod -R 600 ~/.ssh/*
32
- echo -e "Host *\n StrictHostKeyChecking no\n UserKnownHostsFile=/dev/null" > ~/.ssh/config
33
- sed -i -s 's|Gemfile.lock||g' .gitignore
34
- bundle update
35
- trap 'git reset HEAD~1' EXIT
36
- git add Gemfile.lock
37
- git add .gitignore
38
- git fetch
39
- git commit -m 'config' && git push -f heroku $(git symbolic-ref --short HEAD):master
40
- curl -f --connect-timeout 15 --retry 5 --retry-delay 30 http://b1.zold.io > /dev/null
41
25
  architect:
42
26
  - yegor256
43
27
  merge:
data/.simplecov CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -21,5 +21,5 @@
21
21
  # SOFTWARE.
22
22
 
23
23
  source 'https://rubygems.org'
24
- ruby '2.5.1'
24
+ ruby '2.6.0'
25
25
  gemspec
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -22,6 +22,7 @@
22
22
 
23
23
  require 'rubygems'
24
24
  require 'rake'
25
+ require 'date'
25
26
  require 'rdoc'
26
27
  require 'rake/clean'
27
28
 
@@ -80,7 +81,7 @@ Xcop::RakeTask.new :xcop do |task|
80
81
  end
81
82
 
82
83
  task :copyright do
83
- sh "grep -q -r '#{Date.today.strftime('%Y')}' \
84
+ sh "grep -q -r '2018-#{Date.today.strftime('%Y')}' \
84
85
  --include '*.rb' \
85
86
  --include '*.txt' \
86
87
  --include 'Rakefile' \
data/bin/zold CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  # encoding: utf-8
3
3
  #
4
- # Copyright (c) 2018 Yegor Bugayenko
4
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
5
5
  #
6
6
  # Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/zold.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/zold/age.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/zold/amount.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -92,6 +92,9 @@ Available options:"
92
92
 
93
93
  def push(id, opts)
94
94
  raise "There are no remote nodes, run 'zold remote reset'" if @remotes.all.empty?
95
+ @wallets.acq(id) do |wallet|
96
+ raise "The wallet #{id} is absent at #{wallet.path}" unless wallet.exists?
97
+ end
95
98
  start = Time.now
96
99
  total = Concurrent::AtomicFixnum.new
97
100
  nodes = Concurrent::AtomicFixnum.new
@@ -127,10 +130,7 @@ out of #{nodes.value} in #{Age.new(start)}, total score for #{id} is #{total.val
127
130
  start = Time.now
128
131
  uri = "/wallet/#{id}"
129
132
  response = Tempfile.open do |f|
130
- @wallets.acq(id) do |wallet|
131
- raise "The wallet #{id} is absent" unless wallet.exists?
132
- FileUtils.copy_file(wallet.path, f.path)
133
- end
133
+ @wallets.acq(id) { |w| FileUtils.copy_file(w.path, f.path) }
134
134
  r.http(uri).put(f)
135
135
  end
136
136
  @wallets.acq(id) do |wallet|
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/zold/copies.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2019 Zerocracy, Inc.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  # of this software and associated documentation files (the 'Software'), to deal