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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18b2e7ddd5ebe2ff945d8e63516790156ee23a037168302e169a297acc99d00d
4
- data.tar.gz: 921b78d1c9f236a0c91c0461ff13ff8a0daae41e57ae238341aa06d5f56ee816
3
+ metadata.gz: 82023000e2e5b6c02f3c119d1a9d9681e2594fcc1521e85818b5c7ef3ed95a17
4
+ data.tar.gz: c17efa2f646ae475071a5fd11b917d4bde773b5318edea431f035646dff96a64
5
5
  SHA512:
6
- metadata.gz: 9d6377cfd6acc794681260e85be00e4c86729d08ece3028bc802752da759a04e9e8470c1b6c2d265fba0c90c7c40aadd585163b966bf6693502250b93314519b
7
- data.tar.gz: ca35ca9a7e8748cd885ef0db9a27e9d4804e3a4dd10940a26efae96b356e27c6c40bba881f0ce1cddf234a26133dfb16bcfd8e68f6c37383efdac0e9a8b8020c
6
+ metadata.gz: 29895f2966c163aa1843000a654cd5c26da8fa12459e57ebada3b4d346d96aa4c1d352032f66e70eb611762793a18f640d7705c776e792d9abf68ab8b83b27f8
7
+ data.tar.gz: 5fdb3a5c25fa486f2bf0b4c5c72ac176094a8ea3457796ad73eef69e68a37bf6a3b679f3d62b7eb8218577c9545d05dd6b2f33087fdbbaa669b18cfe78de16eb
@@ -0,0 +1,21 @@
1
+ # What
2
+
3
+
4
+
5
+ # Why
6
+
7
+
8
+
9
+
10
+ # How
11
+
12
+
13
+
14
+ # Verification Steps
15
+
16
+
17
+
18
+ ## Checklist:
19
+
20
+ - [ ] Code has been tested locally by PR requester
21
+ - [ ] Changes have been successfully verified by another team member
@@ -1,6 +1,4 @@
1
- # Contributor Code of Conduct
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
-
@@ -0,0 +1,2 @@
1
+ == Contributing ==
2
+ Contributions are welcome, please fork the repo, create a branch, add your code, and make a PR against master on this repo.
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 _COPYING_
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
@@ -7,10 +7,6 @@
7
7
  "port":8080
8
8
  },
9
9
  "resources":{
10
- "espeak_sentence_template":"/tmp/GLaDOS_template.xml",
11
- "path":"resources",
12
- "intro":"intro.txt",
13
- "message":"message.txt",
14
- "outro":"outro.txt"
10
+ "espeak_sentence_template":"/tmp/GLaDOS_template.xml"
15
11
  }
16
12
  }
File without changes
File without changes
File without changes
@@ -20,5 +20,5 @@
20
20
  =end
21
21
 
22
22
  module NumberStation
23
- VERSION = "0.0.5"
23
+ VERSION = "0.1.0"
24
24
  end
@@ -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.5
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.md
82
- - COPYING
82
+ - CODE_OF_CONDUCT.asciidoc
83
+ - CONTRIBUTING.asciidoc
84
+ - COPYING.asciidoc
83
85
  - Gemfile
84
86
  - README.asciidoc
85
87
  - Rakefile