number_station 0.0.5 → 0.1.0
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/.github/PULL_REQUEST_TEMPLATE.md +21 -0
- data/{CODE_OF_CONDUCT.md → CODE_OF_CONDUCT.asciidoc} +1 -3
- data/CONTRIBUTING.asciidoc +2 -0
- data/{COPYING → COPYING.asciidoc} +0 -0
- data/README.asciidoc +2 -2
- data/config/conf.json +1 -5
- data/lib/number_station/decrypt_message.rb +0 -0
- data/lib/number_station/encrypt_message.rb +0 -0
- data/lib/number_station/make_onetime_pad.rb +0 -0
- data/lib/number_station/version.rb +1 -1
- data/lib/number_station.rb +0 -13
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82023000e2e5b6c02f3c119d1a9d9681e2594fcc1521e85818b5c7ef3ed95a17
|
|
4
|
+
data.tar.gz: c17efa2f646ae475071a5fd11b917d4bde773b5318edea431f035646dff96a64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29895f2966c163aa1843000a654cd5c26da8fa12459e57ebada3b4d346d96aa4c1d352032f66e70eb611762793a18f640d7705c776e792d9abf68ab8b83b27f8
|
|
7
|
+
data.tar.gz: 5fdb3a5c25fa486f2bf0b4c5c72ac176094a8ea3457796ad73eef69e68a37bf6a3b679f3d62b7eb8218577c9545d05dd6b2f33087fdbbaa669b18cfe78de16eb
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
== Contributor Code of Conduct ==
|
|
3
2
|
This project adheres to No Code of Conduct. We are all adults. We accept anyone's contributions. Nothing else matters.
|
|
4
3
|
|
|
5
4
|
For more information please visit the [No Code of Conduct](https://github.com/domgetter/NCoC) homepage.
|
|
6
|
-
|
|
File without changes
|
data/README.asciidoc
CHANGED
|
@@ -5,9 +5,9 @@ image:https://badge.fury.io/rb/number_station.svg["Gem Version", link="https://b
|
|
|
5
5
|
|
|
6
6
|
=== Contributing ===
|
|
7
7
|
Contributions are welcome, please fork the repo, create a branch, add your code, and make a PR
|
|
8
|
-
against master on this repo.
|
|
8
|
+
against master on this repo. For more information see _CONTRIBUTING.asciidoc_
|
|
9
9
|
|
|
10
10
|
=== Licence ===
|
|
11
|
-
number_station is distributed under the GPL 3.0 licence. For more information see the
|
|
11
|
+
number_station is distributed under the GPL 3.0 licence. For more information see the _COPYING.asciidoc_
|
|
12
12
|
file.
|
|
13
13
|
|
data/config/conf.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/number_station.rb
CHANGED
|
@@ -32,19 +32,6 @@ require 'number_station/version'
|
|
|
32
32
|
|
|
33
33
|
module NumberStation
|
|
34
34
|
|
|
35
|
-
def self.hexlify(s)
|
|
36
|
-
a = []
|
|
37
|
-
s.each_byte do |b|
|
|
38
|
-
a << sprintf('%02X', b)
|
|
39
|
-
end
|
|
40
|
-
a.join
|
|
41
|
-
end
|
|
42
|
-
|
|
43
|
-
def self.unhexlify(s)
|
|
44
|
-
a = s.split
|
|
45
|
-
return a.pack('H*')
|
|
46
|
-
end
|
|
47
|
-
|
|
48
35
|
def self.command?(name)
|
|
49
36
|
`which #{name}`
|
|
50
37
|
$?.success?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: number_station
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Kirwan
|
|
@@ -77,9 +77,11 @@ files:
|
|
|
77
77
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
78
78
|
- ".github/ISSUE_TEMPLATE/custom.md"
|
|
79
79
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
80
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
80
81
|
- ".gitignore"
|
|
81
|
-
- CODE_OF_CONDUCT.
|
|
82
|
-
-
|
|
82
|
+
- CODE_OF_CONDUCT.asciidoc
|
|
83
|
+
- CONTRIBUTING.asciidoc
|
|
84
|
+
- COPYING.asciidoc
|
|
83
85
|
- Gemfile
|
|
84
86
|
- README.asciidoc
|
|
85
87
|
- Rakefile
|