cwflash 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/cwflash.gemspec +1 -0
- data/lib/cwflash/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c80e7a6ff41838f7d62c81af35c7c05346486af8
|
4
|
+
data.tar.gz: fb1f09e1f4af1615cf7cdfbd5bc689eb0a897687
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 328ba9b752153894ee755fa1bf5508d8c43c4b8d391dcbf53327bcd2e6b2267df24e56aa0403eddf198b5a96cb612279acbd3d5fea904fbd54101b7fe39ca8b2
|
7
|
+
data.tar.gz: 94036f8a90cdb262f2758ab8496fdb291a43aa6f52c9f916cb6b4859d0784b0835319c585d7327becd19194726d183436b50e8ae8459de40976942af03e1646f
|
data/README.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
# Cwflash
|
2
2
|
|
3
|
-
|
3
|
+
Cwflash is a game to help you learn cw (aka Morse code) by using flash cards. It plays a character(s) or prosign and you can type in your answer. The flash cards are stored in JSON files.
|
4
|
+
|
5
|
+
You can find some examples in the samples directory of the gem.
|
6
|
+
|
7
|
+
To add cards, create a new JSON file (copy the format of a sample) and save it to the samples directory. It will automatically show up in the menu.
|
8
|
+
|
9
|
+
The samples are a full set of characters broken up into groups of about 4. There is a file of commonly used prosigns. Prosigns are sent without a break as they should be.
|
4
10
|
|
5
11
|
## Installation
|
6
12
|
|
@@ -18,7 +24,7 @@ Or install it yourself as:
|
|
18
24
|
|
19
25
|
## Usage
|
20
26
|
|
21
|
-
|
27
|
+
$ cwflash
|
22
28
|
|
23
29
|
## Contributing
|
24
30
|
|
data/cwflash.gemspec
CHANGED
data/lib/cwflash/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cwflash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robie Lutsey
|
@@ -80,6 +80,20 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 0.0.2
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: highline
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 1.6.20
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 1.6.20
|
83
97
|
description: Flash card will play a game with you. It plays cw and you type the character(s).
|
84
98
|
Flash cards are kept in a json file. A set of character sets in stored in the spec
|
85
99
|
directory.
|