keyboard_battle 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
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/*.txt`.
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
 
@@ -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
- The program comes with the QWERTY, Dvorak, and Colemak layouts. The format for a keyboard layout description file can be discerned from lib/keyboards/*.txt.
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) }
@@ -1,3 +1,3 @@
1
1
  module KeyboardBattle
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
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.3
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. The program comes with
88
- the QWERTY, Dvorak, and Colemak layouts. The format for a keyboard layout description
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