russian_keyboard 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.
Files changed (52) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +50 -0
  3. data/Gemfile +14 -0
  4. data/Gemfile.lock +85 -0
  5. data/Guardfile +10 -0
  6. data/LICENSE +21 -0
  7. data/README.md +43 -0
  8. data/lib/russian_keyboard.rb +24 -27
  9. data/russian_keyboard.gemspec +19 -0
  10. data/spec/russian_keyboard_spec.rb +35 -0
  11. metadata +15 -113
  12. data/MIT-LICENSE +0 -20
  13. data/Rakefile +0 -32
  14. data/lib/core_ext.rb +0 -22
  15. data/lib/russian_keyboard/version.rb +0 -3
  16. data/lib/tasks/russian_keyboard_tasks.rake +0 -4
  17. data/test/dummy/README.rdoc +0 -28
  18. data/test/dummy/Rakefile +0 -6
  19. data/test/dummy/app/assets/javascripts/application.js +0 -13
  20. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  21. data/test/dummy/app/controllers/application_controller.rb +0 -5
  22. data/test/dummy/app/helpers/application_helper.rb +0 -2
  23. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  24. data/test/dummy/bin/bundle +0 -3
  25. data/test/dummy/bin/rails +0 -4
  26. data/test/dummy/bin/rake +0 -4
  27. data/test/dummy/config.ru +0 -4
  28. data/test/dummy/config/application.rb +0 -23
  29. data/test/dummy/config/boot.rb +0 -5
  30. data/test/dummy/config/database.yml +0 -25
  31. data/test/dummy/config/environment.rb +0 -5
  32. data/test/dummy/config/environments/development.rb +0 -37
  33. data/test/dummy/config/environments/production.rb +0 -78
  34. data/test/dummy/config/environments/test.rb +0 -39
  35. data/test/dummy/config/initializers/assets.rb +0 -8
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  37. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  38. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  39. data/test/dummy/config/initializers/inflections.rb +0 -16
  40. data/test/dummy/config/initializers/mime_types.rb +0 -4
  41. data/test/dummy/config/initializers/session_store.rb +0 -3
  42. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  43. data/test/dummy/config/locales/en.yml +0 -23
  44. data/test/dummy/config/routes.rb +0 -56
  45. data/test/dummy/config/secrets.yml +0 -22
  46. data/test/dummy/log/development.log +0 -0
  47. data/test/dummy/public/404.html +0 -67
  48. data/test/dummy/public/422.html +0 -67
  49. data/test/dummy/public/500.html +0 -66
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/russian_keyboard_test.rb +0 -7
  52. data/test/test_helper.rb +0 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 3016d0c5f531b0568f42a661022941d46dcd3992
4
- data.tar.gz: a7c6e5f2ac04d55f088fe726bc8d4ca109516005
2
+ SHA256:
3
+ metadata.gz: 97245b07f58b90b5bd1349bfaa4aab27cbb5fe2a7d54cc170de8d58fc4d9bf74
4
+ data.tar.gz: '027391fc7696f2f140cc63f2cc10f0be3d8b07e100692b1ddb16cc2ea1747e97'
5
5
  SHA512:
6
- metadata.gz: ab3c841f2819f3f2db9a4ade7e71a9fd939c56389263d5c32ef4aedb0d974c63fd85da3d70efb60dbcfb3b1b786c6d29e3ee0a7cf6927923962c9b864c9df9b3
7
- data.tar.gz: 6e1c0fff31bc1412be20993d0911a0f59ba07ec7ea0602759318631f1169edd2e12b9c36585deae0bdf31ddfff422b4e625a37ba14a2e8c3921515c704dbe7e9
6
+ metadata.gz: e93c9fb73b17ff962566c48ad31069b91d4a7c633419e9de1533adc6f1b141e063afb858ee49f301cc92845f393a85ccdd461b7f1e38f1c941676a569842aa91
7
+ data.tar.gz: fc58dc24797dbfb39515cb6c195900808079bcf1bc6fc0950e8aa98edbc15c18bf71ef52cd3d0aae32a5fbad940be683aafce965a604a50c49f17ff7e641cc68
@@ -0,0 +1,50 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ ## Specific to RubyMotion:
17
+ .dat*
18
+ .repl_history
19
+ build/
20
+ *.bridgesupport
21
+ build-iPhoneOS/
22
+ build-iPhoneSimulator/
23
+
24
+ ## Specific to RubyMotion (use of CocoaPods):
25
+ #
26
+ # We recommend against adding the Pods directory to your .gitignore. However
27
+ # you should judge for yourself, the pros and cons are mentioned at:
28
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
29
+ #
30
+ # vendor/Pods/
31
+
32
+ ## Documentation cache and generated files:
33
+ /.yardoc/
34
+ /_yardoc/
35
+ /doc/
36
+ /rdoc/
37
+
38
+ ## Environment normalization:
39
+ /.bundle/
40
+ /vendor/bundle
41
+ /lib/bundler/man/
42
+
43
+ # for a library or gem, you might want to ignore these files since the code is
44
+ # intended to run in multiple environments; otherwise, check them in:
45
+ # Gemfile.lock
46
+ # .ruby-version
47
+ # .ruby-gemset
48
+
49
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ group :development do
5
+ gem 'guard'
6
+ gem 'guard-rspec'
7
+ gem 'guard-bundler'
8
+ gem 'rb-readline'
9
+ end
10
+
11
+ group :test do
12
+ gem 'rspec'
13
+ gem 'simplecov', require: false
14
+ end
@@ -0,0 +1,85 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ russian_keyboard (0.0.2)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ coderay (1.1.2)
10
+ diff-lcs (1.3)
11
+ docile (1.3.1)
12
+ ffi (1.10.0)
13
+ formatador (0.2.5)
14
+ guard (2.15.0)
15
+ formatador (>= 0.2.4)
16
+ listen (>= 2.7, < 4.0)
17
+ lumberjack (>= 1.0.12, < 2.0)
18
+ nenv (~> 0.1)
19
+ notiffany (~> 0.0)
20
+ pry (>= 0.9.12)
21
+ shellany (~> 0.0)
22
+ thor (>= 0.18.1)
23
+ guard-bundler (2.2.1)
24
+ bundler (>= 1.3.0, < 3)
25
+ guard (~> 2.2)
26
+ guard-compat (~> 1.1)
27
+ guard-compat (1.2.1)
28
+ guard-rspec (4.7.3)
29
+ guard (~> 2.1)
30
+ guard-compat (~> 1.1)
31
+ rspec (>= 2.99.0, < 4.0)
32
+ json (2.1.0)
33
+ listen (3.1.5)
34
+ rb-fsevent (~> 0.9, >= 0.9.4)
35
+ rb-inotify (~> 0.9, >= 0.9.7)
36
+ ruby_dep (~> 1.2)
37
+ lumberjack (1.0.13)
38
+ method_source (0.9.2)
39
+ nenv (0.3.0)
40
+ notiffany (0.1.1)
41
+ nenv (~> 0.1)
42
+ shellany (~> 0.0)
43
+ pry (0.12.2)
44
+ coderay (~> 1.1.0)
45
+ method_source (~> 0.9.0)
46
+ rb-fsevent (0.10.3)
47
+ rb-inotify (0.10.0)
48
+ ffi (~> 1.0)
49
+ rb-readline (0.5.5)
50
+ rspec (3.8.0)
51
+ rspec-core (~> 3.8.0)
52
+ rspec-expectations (~> 3.8.0)
53
+ rspec-mocks (~> 3.8.0)
54
+ rspec-core (3.8.0)
55
+ rspec-support (~> 3.8.0)
56
+ rspec-expectations (3.8.2)
57
+ diff-lcs (>= 1.2.0, < 2.0)
58
+ rspec-support (~> 3.8.0)
59
+ rspec-mocks (3.8.0)
60
+ diff-lcs (>= 1.2.0, < 2.0)
61
+ rspec-support (~> 3.8.0)
62
+ rspec-support (3.8.0)
63
+ ruby_dep (1.5.0)
64
+ shellany (0.0.1)
65
+ simplecov (0.16.1)
66
+ docile (~> 1.1)
67
+ json (>= 1.8, < 3)
68
+ simplecov-html (~> 0.10.0)
69
+ simplecov-html (0.10.2)
70
+ thor (0.20.3)
71
+
72
+ PLATFORMS
73
+ ruby
74
+
75
+ DEPENDENCIES
76
+ guard
77
+ guard-bundler
78
+ guard-rspec
79
+ rb-readline
80
+ rspec
81
+ russian_keyboard!
82
+ simplecov
83
+
84
+ BUNDLED WITH
85
+ 1.17.3
@@ -0,0 +1,10 @@
1
+ guard :rspec, cmd: 'rspec' do
2
+ watch(%r{^spec/.+_spec\.rb$})
3
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
4
+ watch('spec/spec_helper.rb') { "spec" }
5
+ end
6
+
7
+ guard 'bundler' do
8
+ watch('Gemfile')
9
+ watch(/^.+\.gemspec/)
10
+ end
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Rodion
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,43 @@
1
+ # RussianKeyboard
2
+
3
+ The Ruby tool which fix your wrong keyboard layout.
4
+ Repair original text which was written at wrong keyboard layout.
5
+
6
+ Короче, gem исправляет текст набранный в неправильной раскладке клавиатуры. Русскому человеку знакомо это чувство.
7
+
8
+ This gem can switch this `Ghbdtn! Lf 'nj ;t utv #1!` to this `Привет! Да это же гем №1!`, or this string `Руддщб икдщ! Ершы шы ьн афмщкшеу пуь!` to this `Hello, bro! This is my favorite gem!`
9
+
10
+ ## Usage examples:
11
+
12
+ ```ruby
13
+ RussianKeyboard.to_ru('Ghbdtn!')
14
+ => "Привет!"
15
+
16
+ RussianKeyboard.to_en('Руддщ!')
17
+ => "Hello!"
18
+
19
+ RussianKeyboard.auto_switch('Руддщб ьн акшутв!')
20
+ => "Hello, my friend!"
21
+
22
+ RussianKeyboard.gues_keymap('привет')
23
+ => "ru"
24
+
25
+ RussianKeyboard.gues_keymap('hello')
26
+ => "en"
27
+ ```
28
+
29
+ ## INSTALL
30
+
31
+ ```
32
+ gem 'russian_keyboard'
33
+ ```
34
+
35
+
36
+ ## Contributing
37
+
38
+ * Fork the project.
39
+ * Run `bundle install`
40
+ * Run `bundle exec guard`
41
+ * Make your feature addition or bug fix.
42
+ * Add tests for it. This is important.
43
+ * Send me a pull request.
@@ -1,35 +1,32 @@
1
- require 'core_ext'
2
-
3
1
  module RussianKeyboard
2
+ ENGLISH_KEYS = %w[ q w e r t y u i o p [ ] a s d f g h j k l ; ' \ z x c v b n m , . / Q W E R T Y U I O P { } A S D F G H J K L : ' | Z X C V B N M < > ? @ # $ ^ & ].join.freeze
3
+ RUSSIAN_KEYS = %w[ й ц у к е н г ш щ з х ъ ф ы в а п р о л д ж э \ я ч с м и т ь б ю . Й Ц У К Е Н Г Ш Щ З Х Ъ Ф Ы В А П Р О Л Д Ж Э / Я Ч С М И Т Ь Б Ю , ' № ; : ? ].join.freeze
4
4
 
5
- ENGLISH_KEYS = %w[ q w e r t y u i o p [ ] a s d f g h j k l ; ' \ z x c v b n m , . / Q W E R T Y U I O P { } A S D F G H J K L : " | Z X C V B N M < > ? @ # $ ^ & ]
6
- RUSSIAN_KEYS = %w[ й ц у к е н г ш щ з х ъ ф ы в а п р о л д ж э \ я ч с м и т ь б ю . Й Ц У К Е Н Г Ш Щ З Х Ъ Ф Ы В А П Р О Л Д Ж Э / Я Ч С М И Т Ь Б Ю , " № ; : ? ]
5
+ class << self
6
+ def to_ru str
7
+ str.tr(ENGLISH_KEYS, RUSSIAN_KEYS)
8
+ end
7
9
 
8
- def self.to_ru str
9
- str.tr(ENGLISH_KEYS.join, RUSSIAN_KEYS.join)
10
- end
10
+ def to_en str
11
+ str.tr(RUSSIAN_KEYS, ENGLISH_KEYS)
12
+ end
11
13
 
12
- def self.to_en str
13
- str.tr(RUSSIAN_KEYS.join, ENGLISH_KEYS.join)
14
- end
15
-
16
- def self.auto_switch str
17
- case gues_keymap str
18
- when "en"
19
- to_ru str
20
- when "ru"
21
- to_en str
22
- else
23
- to_ru str
24
- end
25
- end
14
+ def auto_switch str
15
+ case gues_keymap(str)
16
+ when 'en'.freeze
17
+ to_ru(str)
18
+ when 'ru'.freeze
19
+ to_en(str)
20
+ else
21
+ to_ru(str)
22
+ end
23
+ end
26
24
 
27
- private
25
+ def gues_keymap str
26
+ en_count = str.scan(/A-Z{1}/i).size
27
+ ru_count = str.scan(/\p{Cyrillic}{1}/i).size
28
28
 
29
- def self.gues_keymap str
30
- en_count = str.scan(/A-Z{1}/i).size
31
- ru_count = str.scan(/\p{Cyrillic}{1}/i).size
32
-
33
- return en_count >= ru_count ? "en" : "ru"
29
+ return en_count >= ru_count ? 'en'.freeze : 'ru'.freeze
30
+ end
34
31
  end
35
32
  end
@@ -0,0 +1,19 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'russian_keyboard'
3
+ s.version = '0.0.2'
4
+ s.date = '2019-02-04'
5
+ s.summary = 'The tool which fix your wrong keyboard layout.'
6
+ s.description = 'Repair original text which was written at wrong keyboard layout.'
7
+ s.license = 'MIT'
8
+ s.authors = ['Rodion V']
9
+ s.email = 'rodion.v@devaer.com'
10
+ s.homepage = 'https://github.com/brlo/capsula'
11
+ s.license = 'MIT'
12
+
13
+ all_files = `git ls-files`.split("\n")
14
+ test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
+
16
+ s.files = all_files - test_files
17
+ s.test_files = test_files
18
+ s.require_paths = ['lib']
19
+ end
@@ -0,0 +1,35 @@
1
+ require 'russian_keyboard'
2
+
3
+ RSpec.describe RussianKeyboard do
4
+ describe 'User can' do
5
+ it 'translate keymap from english to russian' do
6
+ val = RussianKeyboard.to_ru('ghbdtn')
7
+ expect(val).to be == 'привет'
8
+ end
9
+
10
+ it 'translate keymap from russian to english' do
11
+ val = RussianKeyboard.to_en('руддщ')
12
+ expect(val).to be == 'hello'
13
+ end
14
+
15
+ it 'auto-translate keymap to russian' do
16
+ val = RussianKeyboard.auto_switch('ghbdtn')
17
+ expect(val).to be == 'привет'
18
+ end
19
+
20
+ it 'translate keymap from russian to english' do
21
+ val = RussianKeyboard.auto_switch('руддщ')
22
+ expect(val).to be == 'hello'
23
+ end
24
+
25
+ it 'gues russian keymap' do
26
+ val = RussianKeyboard.gues_keymap('руддщ')
27
+ expect(val).to be == 'ru'
28
+ end
29
+
30
+ it 'gues english keymap' do
31
+ val = RussianKeyboard.gues_keymap('ghbdtn')
32
+ expect(val).to be == 'en'
33
+ end
34
+ end
35
+ end
metadata CHANGED
@@ -1,93 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: russian_keyboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodion V
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-24 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: rails
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 4.1.9
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: 4.1.9
27
- - !ruby/object:Gem::Dependency
28
- name: sqlite3
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
11
+ date: 2019-02-04 00:00:00.000000000 Z
12
+ dependencies: []
41
13
  description: Repair original text which was written at wrong keyboard layout.
42
- email:
43
- - rodion.v@devaer.com
14
+ email: rodion.v@devaer.com
44
15
  executables: []
45
16
  extensions: []
46
17
  extra_rdoc_files: []
47
18
  files:
48
- - MIT-LICENSE
49
- - Rakefile
50
- - lib/core_ext.rb
19
+ - ".gitignore"
20
+ - Gemfile
21
+ - Gemfile.lock
22
+ - Guardfile
23
+ - LICENSE
24
+ - README.md
51
25
  - lib/russian_keyboard.rb
52
- - lib/russian_keyboard/version.rb
53
- - lib/tasks/russian_keyboard_tasks.rake
54
- - test/dummy/README.rdoc
55
- - test/dummy/Rakefile
56
- - test/dummy/app/assets/javascripts/application.js
57
- - test/dummy/app/assets/stylesheets/application.css
58
- - test/dummy/app/controllers/application_controller.rb
59
- - test/dummy/app/helpers/application_helper.rb
60
- - test/dummy/app/views/layouts/application.html.erb
61
- - test/dummy/bin/bundle
62
- - test/dummy/bin/rails
63
- - test/dummy/bin/rake
64
- - test/dummy/config.ru
65
- - test/dummy/config/application.rb
66
- - test/dummy/config/boot.rb
67
- - test/dummy/config/database.yml
68
- - test/dummy/config/environment.rb
69
- - test/dummy/config/environments/development.rb
70
- - test/dummy/config/environments/production.rb
71
- - test/dummy/config/environments/test.rb
72
- - test/dummy/config/initializers/assets.rb
73
- - test/dummy/config/initializers/backtrace_silencers.rb
74
- - test/dummy/config/initializers/cookies_serializer.rb
75
- - test/dummy/config/initializers/filter_parameter_logging.rb
76
- - test/dummy/config/initializers/inflections.rb
77
- - test/dummy/config/initializers/mime_types.rb
78
- - test/dummy/config/initializers/session_store.rb
79
- - test/dummy/config/initializers/wrap_parameters.rb
80
- - test/dummy/config/locales/en.yml
81
- - test/dummy/config/routes.rb
82
- - test/dummy/config/secrets.yml
83
- - test/dummy/log/development.log
84
- - test/dummy/public/404.html
85
- - test/dummy/public/422.html
86
- - test/dummy/public/500.html
87
- - test/dummy/public/favicon.ico
88
- - test/russian_keyboard_test.rb
89
- - test/test_helper.rb
90
- homepage: http://rvlasov.ru/
26
+ - russian_keyboard.gemspec
27
+ - spec/russian_keyboard_spec.rb
28
+ homepage: https://github.com/brlo/capsula
91
29
  licenses:
92
30
  - MIT
93
31
  metadata: {}
@@ -106,45 +44,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
44
  - !ruby/object:Gem::Version
107
45
  version: '0'
108
46
  requirements: []
109
- rubyforge_project:
110
- rubygems_version: 2.4.4
47
+ rubygems_version: 3.0.2
111
48
  signing_key:
112
49
  specification_version: 4
113
50
  summary: The tool which fix your wrong keyboard layout.
114
51
  test_files:
115
- - test/dummy/app/assets/javascripts/application.js
116
- - test/dummy/app/assets/stylesheets/application.css
117
- - test/dummy/app/controllers/application_controller.rb
118
- - test/dummy/app/helpers/application_helper.rb
119
- - test/dummy/app/views/layouts/application.html.erb
120
- - test/dummy/bin/bundle
121
- - test/dummy/bin/rails
122
- - test/dummy/bin/rake
123
- - test/dummy/config/application.rb
124
- - test/dummy/config/boot.rb
125
- - test/dummy/config/database.yml
126
- - test/dummy/config/environment.rb
127
- - test/dummy/config/environments/development.rb
128
- - test/dummy/config/environments/production.rb
129
- - test/dummy/config/environments/test.rb
130
- - test/dummy/config/initializers/assets.rb
131
- - test/dummy/config/initializers/backtrace_silencers.rb
132
- - test/dummy/config/initializers/cookies_serializer.rb
133
- - test/dummy/config/initializers/filter_parameter_logging.rb
134
- - test/dummy/config/initializers/inflections.rb
135
- - test/dummy/config/initializers/mime_types.rb
136
- - test/dummy/config/initializers/session_store.rb
137
- - test/dummy/config/initializers/wrap_parameters.rb
138
- - test/dummy/config/locales/en.yml
139
- - test/dummy/config/routes.rb
140
- - test/dummy/config/secrets.yml
141
- - test/dummy/config.ru
142
- - test/dummy/log/development.log
143
- - test/dummy/public/404.html
144
- - test/dummy/public/422.html
145
- - test/dummy/public/500.html
146
- - test/dummy/public/favicon.ico
147
- - test/dummy/Rakefile
148
- - test/dummy/README.rdoc
149
- - test/russian_keyboard_test.rb
150
- - test/test_helper.rb
52
+ - spec/russian_keyboard_spec.rb