file-replicator 1.0.0 → 1.0.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed8e19a01b9dabeea8b2962f4d105cad505d59ff
|
|
4
|
+
data.tar.gz: bd2d3398cd622e04da792e8253e321cb8c9bd1d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ddf6adfdfb49c06fe68359881c51a37b5d02fa61d582c0590b258902050990b4060473eb1c8fe1b33134bba1fdc5b0992b408eca39801b211756d228d847461
|
|
7
|
+
data.tar.gz: 8023058f74f8211db303989c50b8f9b8a0eec42d442a8dbd9f76f0dd716ee12911696f028dfa01370e23ab94592f1ebc05f55ea93800cfad070f861e9cf2171c
|
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://badge.fury.io/rb/file-replicator)
|
|
2
|
+
|
|
1
3
|
# File replicator, a split-join command line tool
|
|
2
4
|
|
|
3
5
|
This Gem provides you with two command line tools, one to split up files and one to join them back togather again.
|
|
@@ -126,7 +128,7 @@ will join the 125 chunks into file.bin. Work pretty good because the numbering i
|
|
|
126
128
|
|
|
127
129
|
## Contributing
|
|
128
130
|
|
|
129
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/vadviktor/
|
|
131
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/vadviktor/file-replicator. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](CODE_OF_CONDUCT.md) code of conduct.
|
|
130
132
|
|
|
131
133
|
1. Fork it (https://github.com/vadviktor/file-replicator/fork)
|
|
132
134
|
2. Create your feature branch (git checkout -b my-new-feature)
|
|
File without changes
|
|
@@ -161,8 +161,8 @@ module FileReplicator
|
|
|
161
161
|
We can use a more human readable form to specify larger amounts just like for output sizes.
|
|
162
162
|
|
|
163
163
|
#{header 'Supported checksum algorithms:'}
|
|
164
|
-
- #{highlight 'md5'}
|
|
165
|
-
- #{highlight 'sha1'}
|
|
164
|
+
- #{highlight 'md5'} (considered broken)
|
|
165
|
+
- #{highlight 'sha1'} (considered broken)
|
|
166
166
|
- #{highlight 'sha224'}
|
|
167
167
|
- #{highlight 'sha256'}
|
|
168
168
|
- #{highlight 'sha384'}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: file-replicator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Viktor (Icon) VAD
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: slop
|
|
@@ -128,7 +128,7 @@ files:
|
|
|
128
128
|
- bin/setup
|
|
129
129
|
- exe/rjoin
|
|
130
130
|
- exe/rsplit
|
|
131
|
-
- file-
|
|
131
|
+
- file-replicator.gemspec
|
|
132
132
|
- lib/file_replicator/abstract_cmd_parse.rb
|
|
133
133
|
- lib/file_replicator/checksum.rb
|
|
134
134
|
- lib/file_replicator/exceptions.rb
|
|
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
158
158
|
version: '0'
|
|
159
159
|
requirements: []
|
|
160
160
|
rubyforge_project:
|
|
161
|
-
rubygems_version: 2.5.
|
|
161
|
+
rubygems_version: 2.5.2
|
|
162
162
|
signing_key:
|
|
163
163
|
specification_version: 4
|
|
164
164
|
summary: Split and join files in binary mode
|