keyboard_battle 0.0.3 → 0.0.4
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.
- data/README.md +2 -2
- data/keyboard_battle.gemspec +3 -3
- data/lib/keyboard_battle/version.rb +1 -1
- metadata +4 -5
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
KeyboardBattle is a simple program that compares the performance of keyboard layouts according to two metrics, reach effort (travel from the home row being increasingly effortful) and alternation effort (typing consecutive keys with a single hand being more effortful). For both, a lower value means less effort.
|
4
4
|
|
5
|
-
The program comes with the QWERTY, Dvorak, and Colemak layouts. The format for a keyboard layout description file can be discerned from `lib/keyboards
|
5
|
+
The program comes with the QWERTY, Dvorak, and Colemak layouts. The format for a keyboard layout description file can be discerned from `lib/keyboard_battle/keyboards.rb`.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -10,7 +10,7 @@ The program comes with the QWERTY, Dvorak, and Colemak layouts. The format for a
|
|
10
10
|
|
11
11
|
## Usage
|
12
12
|
|
13
|
-
E.g., `keyboard_battle my_text.txt`, or try `keyboard_battle --bundled`
|
13
|
+
E.g., `keyboard_battle my_text.txt`, or try `keyboard_battle --bundled` to use some texts from The Internet Archive.
|
14
14
|
|
15
15
|
## Limitations and shortcomings
|
16
16
|
|
data/keyboard_battle.gemspec
CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.description = %q{Keyboard Battle compares the performance of keyboard layouts according to reach effort and alternation effort.}
|
8
8
|
gem.summary =<<SUMMARY
|
9
9
|
KeyboardBattle is a simple program that compares the performance of keyboard layouts according to two metrics, reach effort (travel from the home row being increasingly effortful) and alternation effort (typing consecutive keys with a single hand being more effortful). For both, a lower value means less effort.
|
10
|
-
|
11
|
-
|
10
|
+
|
11
|
+
Type `keyboard_battle` for usage.
|
12
12
|
SUMMARY
|
13
|
-
gem.homepage = ""
|
13
|
+
gem.homepage = "https://github.com/bak/keyboard_battle"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($\)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: keyboard_battle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -58,7 +58,7 @@ files:
|
|
58
58
|
- texts/declaration_of_independence.txt
|
59
59
|
- texts/gullivers.txt
|
60
60
|
- texts/qbf.txt
|
61
|
-
homepage:
|
61
|
+
homepage: https://github.com/bak/keyboard_battle
|
62
62
|
licenses: []
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -84,9 +84,8 @@ specification_version: 3
|
|
84
84
|
summary: KeyboardBattle is a simple program that compares the performance of keyboard
|
85
85
|
layouts according to two metrics, reach effort (travel from the home row being increasingly
|
86
86
|
effortful) and alternation effort (typing consecutive keys with a single hand being
|
87
|
-
more effortful). For both, a lower value means less effort.
|
88
|
-
|
89
|
-
file can be discerned from lib/keyboards/*.txt.
|
87
|
+
more effortful). For both, a lower value means less effort. Type `keyboard_battle`
|
88
|
+
for usage.
|
90
89
|
test_files:
|
91
90
|
- spec/keyboard_battle/command_dispatcher_spec.rb
|
92
91
|
- spec/keyboard_battle/exercise_spec.rb
|