solidus_i18n 1.2.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +35 -0
  3. data/.gem_release.yml +5 -0
  4. data/.github/stale.yml +17 -0
  5. data/.gitignore +4 -8
  6. data/.hound.yml +1 -1
  7. data/.rspec +2 -0
  8. data/.rubocop.yml +3 -6
  9. data/.rubocop_todo.yml +18 -0
  10. data/Gemfile +20 -10
  11. data/{LICENSE.md → LICENSE} +2 -2
  12. data/README.md +47 -46
  13. data/Rakefile +8 -24
  14. data/bin/console +17 -0
  15. data/bin/rails +12 -4
  16. data/bin/setup +8 -0
  17. data/config/locales/bg.yml +1 -47
  18. data/config/locales/ca.yml +12 -49
  19. data/config/locales/cs.yml +1 -48
  20. data/config/locales/da.yml +1 -47
  21. data/config/locales/de-CH.yml +0 -48
  22. data/config/locales/de.yml +408 -257
  23. data/config/locales/en-AU.yml +0 -48
  24. data/config/locales/en-GB.yml +1 -47
  25. data/config/locales/en-IN.yml +7 -53
  26. data/config/locales/en-NZ.yml +0 -48
  27. data/config/locales/es-CL.yml +1 -49
  28. data/config/locales/es-EC.yml +1 -47
  29. data/config/locales/es-MX.yml +417 -111
  30. data/config/locales/es.yml +27 -63
  31. data/config/locales/et.yml +0 -50
  32. data/config/locales/fa.yml +0 -48
  33. data/config/locales/fi.yml +1 -47
  34. data/config/locales/fr.yml +660 -264
  35. data/config/locales/id.yml +2 -46
  36. data/config/locales/it.yml +1196 -646
  37. data/config/locales/ja.yml +7 -53
  38. data/config/locales/ko.yml +0 -48
  39. data/config/locales/lv.yml +0 -48
  40. data/config/locales/nb.yml +0 -48
  41. data/config/locales/nl.yml +1 -47
  42. data/config/locales/pl.yml +1 -47
  43. data/config/locales/pt-BR.yml +1093 -251
  44. data/config/locales/pt.yml +0 -48
  45. data/config/locales/ro.yml +3 -48
  46. data/config/locales/ru.yml +1884 -1240
  47. data/config/locales/sk.yml +1 -45
  48. data/config/locales/sl-SI.yml +0 -48
  49. data/config/locales/sv.yml +1 -47
  50. data/config/locales/th.yml +1 -45
  51. data/config/locales/tr.yml +1 -45
  52. data/config/locales/uk.yml +1 -49
  53. data/config/locales/vi.yml +1 -45
  54. data/config/locales/zh-CN.yml +1 -45
  55. data/config/locales/zh-TW.yml +1 -45
  56. data/config/routes.rb +2 -8
  57. data/i18n-tasks.yml +4 -0
  58. data/lib/generators/solidus_i18n/install/install_generator.rb +10 -13
  59. data/lib/solidus_i18n/engine.rb +9 -36
  60. data/lib/solidus_i18n/factories.rb +4 -0
  61. data/lib/solidus_i18n/version.rb +3 -16
  62. data/lib/solidus_i18n.rb +4 -5
  63. data/lib/tasks/solidus_i18n/upgrade.rake +13 -11
  64. data/solidus_i18n.gemspec +29 -37
  65. data/spec/dummy/README.md +24 -0
  66. data/spec/dummy/Rakefile +6 -0
  67. data/spec/dummy/app/assets/config/manifest.js +2 -0
  68. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  69. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  70. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  71. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  72. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  73. data/spec/dummy/app/jobs/application_job.rb +7 -0
  74. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  75. data/spec/dummy/app/models/application_record.rb +3 -0
  76. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  77. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  78. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  79. data/spec/dummy/bin/rails +4 -0
  80. data/spec/dummy/bin/rake +4 -0
  81. data/spec/dummy/bin/setup +33 -0
  82. data/spec/dummy/config/application.rb +53 -0
  83. data/spec/dummy/config/boot.rb +6 -0
  84. data/spec/dummy/config/cable.yml +10 -0
  85. data/spec/dummy/config/credentials.yml.enc +1 -0
  86. data/spec/dummy/config/database.yml +12 -0
  87. data/spec/dummy/config/environment.rb +5 -0
  88. data/spec/dummy/config/environments/development.rb +76 -0
  89. data/spec/dummy/config/environments/production.rb +120 -0
  90. data/spec/dummy/config/environments/test.rb +36 -0
  91. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  92. data/spec/dummy/config/initializers/assets.rb +12 -0
  93. data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
  94. data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
  95. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  96. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  97. data/spec/dummy/config/initializers/inflections.rb +16 -0
  98. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  99. data/spec/dummy/config/initializers/permissions_policy.rb +11 -0
  100. data/spec/dummy/config/initializers/spree.rb +74 -0
  101. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/spec/dummy/config/locales/en.yml +33 -0
  103. data/spec/dummy/config/master.key +1 -0
  104. data/spec/dummy/config/routes.rb +9 -0
  105. data/spec/dummy/config/storage.yml +34 -0
  106. data/spec/dummy/config.ru +6 -0
  107. data/spec/dummy/db/migrate/20210218213814_create_active_storage_tables.active_storage.rb +36 -0
  108. data/spec/dummy/db/migrate/20210218213818_create_action_mailbox_tables.action_mailbox.rb +14 -0
  109. data/spec/dummy/db/migrate/20210218213819_create_action_text_tables.action_text.rb +14 -0
  110. data/spec/dummy/db/migrate/20210218213820_solidus_one_four.spree.rb +1103 -0
  111. data/spec/dummy/db/migrate/20210218213821_create_spree_wallet_payment_sources.spree.rb +28 -0
  112. data/spec/dummy/db/migrate/20210218213822_migrate_credit_cards_to_wallet_payment_sources.spree.rb +30 -0
  113. data/spec/dummy/db/migrate/20210218213823_remove_is_default_from_prices.spree.rb +8 -0
  114. data/spec/dummy/db/migrate/20210218213824_remove_currency_from_line_items.spree.rb +8 -0
  115. data/spec/dummy/db/migrate/20210218213825_add_available_to_columns_and_remove_display_on_from_payment_methods.spree.rb +31 -0
  116. data/spec/dummy/db/migrate/20210218213826_create_spree_promotion_code_batch.spree.rb +39 -0
  117. data/spec/dummy/db/migrate/20210218213827_add_available_to_users_and_remove_display_on_from_shipping_methods.spree.rb +23 -0
  118. data/spec/dummy/db/migrate/20210218213828_add_index_to_spree_payments_number.spree.rb +8 -0
  119. data/spec/dummy/db/migrate/20210218213829_remove_spree_store_credits_column.spree.rb +8 -0
  120. data/spec/dummy/db/migrate/20210218213830_add_lft_and_rgt_indexes_to_taxons.spree.rb +9 -0
  121. data/spec/dummy/db/migrate/20210218213831_remove_order_id_from_inventory_units.spree.rb +31 -0
  122. data/spec/dummy/db/migrate/20210218213832_transform_tax_rate_category_relation.spree.rb +51 -0
  123. data/spec/dummy/db/migrate/20210218213833_add_roles_unique_constraints.spree.rb +9 -0
  124. data/spec/dummy/db/migrate/20210218213834_add_time_range_to_tax_rate.spree.rb +9 -0
  125. data/spec/dummy/db/migrate/20210218213835_rename_bogus_gateways.spree.rb +19 -0
  126. data/spec/dummy/db/migrate/20210218213836_remove_default_tax_from_spree_zones.spree.rb +8 -0
  127. data/spec/dummy/db/migrate/20210218213837_create_promotion_rule_stores.spree.rb +13 -0
  128. data/spec/dummy/db/migrate/20210218213838_create_store_shipping_methods.spree.rb +13 -0
  129. data/spec/dummy/db/migrate/20210218213839_add_available_locales_to_stores.spree.rb +10 -0
  130. data/spec/dummy/db/migrate/20210218213840_add_amount_remaining_to_store_credit_events.spree.rb +62 -0
  131. data/spec/dummy/db/migrate/20210218213841_add_join_characters_to_promotion_code_batch.spree.rb +12 -0
  132. data/spec/dummy/db/migrate/20210218213842_add_apply_to_all_to_variant_property_rule.spree.rb +13 -0
  133. data/spec/dummy/db/migrate/20210218213843_create_spree_store_credit_reasons_table.spree.rb +56 -0
  134. data/spec/dummy/db/migrate/20210218213844_remove_code_from_spree_promotions.spree.rb +43 -0
  135. data/spec/dummy/db/migrate/20210218213845_drop_spree_store_credit_update_reasons.spree.rb +20 -0
  136. data/spec/dummy/db/migrate/20210218213846_add_default_billng_flag_to_user_addresses.spree.rb +7 -0
  137. data/spec/dummy/db/migrate/20210218213847_add_bcc_email_to_spree_stores.spree.rb +8 -0
  138. data/spec/dummy/db/migrate/20210218213848_add_discontinue_on_to_spree_products.spree.rb +8 -0
  139. data/spec/dummy/db/migrate/20210218213849_add_name_to_spree_addresses.spree.rb +14 -0
  140. data/spec/dummy/db/migrate/20210218213850_add_api_key_to_spree_users.spree_api.rb +10 -0
  141. data/spec/dummy/db/migrate/20210218213851_resize_api_key_field.spree_api.rb +10 -0
  142. data/spec/dummy/db/migrate/20210218213852_rename_api_key_to_spree_api_key.spree_api.rb +10 -0
  143. data/spec/dummy/db/migrate/20210218213853_add_index_to_user_spree_api_key.spree_api.rb +10 -0
  144. data/spec/dummy/db/schema.rb +1215 -0
  145. data/spec/dummy/db/seeds.rb +10 -0
  146. data/spec/dummy/db/solidus_test.sqlite3 +0 -0
  147. data/spec/dummy/log/test.log +1198 -0
  148. data/spec/dummy/public/404.html +67 -0
  149. data/spec/dummy/public/422.html +67 -0
  150. data/spec/dummy/public/500.html +66 -0
  151. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  152. data/spec/dummy/public/apple-touch-icon.png +0 -0
  153. data/spec/dummy/public/favicon.ico +0 -0
  154. data/spec/dummy/tmp/development_secret.txt +1 -0
  155. data/spec/dummy/vendor/assets/javascripts/spree/backend/all.js +10 -0
  156. data/spec/dummy/vendor/assets/javascripts/spree/frontend/all.js +10 -0
  157. data/{app/assets/stylesheets/spree/backend/solidus_i18n.css → spec/dummy/vendor/assets/stylesheets/spree/backend/all.css} +1 -0
  158. data/{app/assets/stylesheets/spree/frontend/solidus_i18n.css → spec/dummy/vendor/assets/stylesheets/spree/frontend/all.css} +1 -0
  159. data/spec/examples.txt +4 -0
  160. data/spec/solidus_i18n_spec.rb +67 -0
  161. data/spec/spec_helper.rb +15 -13
  162. metadata +222 -264
  163. data/.travis.yml +0 -30
  164. data/app/assets/javascripts/spree/backend/solidus_i18n.js +0 -2
  165. data/app/assets/javascripts/spree/backend/translations.js.coffee +0 -5
  166. data/app/assets/javascripts/spree/frontend/locale.js.coffee +0 -3
  167. data/app/assets/javascripts/spree/frontend/solidus_i18n.js +0 -2
  168. data/app/controllers/spree/admin/locales_controller.rb +0 -16
  169. data/app/controllers/spree/api/base_controller_decorator.rb +0 -3
  170. data/app/controllers/spree/base_controller_decorator.rb +0 -3
  171. data/app/controllers/spree/locale_controller_decorator.rb +0 -6
  172. data/app/helpers/solidus_i18n/locale_helper.rb +0 -31
  173. data/app/overrides/spree/admin/shared/_configuration_menu/add_i18n_tab.html.erb.deface +0 -2
  174. data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +0 -16
  175. data/app/views/spree/admin/locales/show.html.erb +0 -27
  176. data/config/initializers/country_names.rb +0 -51
  177. data/config/initializers/routing_filter.rb +0 -2
  178. data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +0 -65
  179. data/lib/solidus_i18n/configuration.rb +0 -9
  180. data/lib/solidus_i18n/controller_locale_helper.rb +0 -29
  181. data/lib/solidus_i18n/locale.rb +0 -13
  182. data/spec/controllers/locales_controller_spec.rb +0 -24
  183. data/spec/features/admin/translations_spec.rb +0 -34
  184. data/spec/features/russian_errors_translation_spec.rb +0 -17
  185. data/spec/features/translation_spec.rb +0 -31
  186. data/spec/features/translations_spec.rb +0 -28
  187. data/spec/support/capybara.rb +0 -11
  188. data/spec/support/database_cleaner.rb +0 -23
  189. data/spec/support/factory_girl.rb +0 -5
  190. data/spec/support/i18n.rb +0 -5
  191. data/spec/support/spree.rb +0 -12
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
@@ -0,0 +1 @@
1
+ d47b64487d6f270de1f71e1ce741894aa9e0f997ce3047b7c125dc46b47acb993a34794f2d0e5a74d9b9f3bbebe2ee549bbeee3d7ca1f8b759851f6ec6b8c2ba
@@ -0,0 +1,10 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require jquery
8
+ //= require rails-ujs
9
+ //= require spree/backend
10
+ //= require_tree .
@@ -0,0 +1,10 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require jquery
8
+ //= require rails-ujs
9
+ //= require spree/frontend
10
+ //= require_tree .
@@ -4,5 +4,6 @@
4
4
  * the top of the compiled file, but it's generally better to create a new file per style scope.
5
5
  *
6
6
  *= require spree/backend
7
+ *= require_self
7
8
  *= require_tree .
8
9
  */
@@ -4,5 +4,6 @@
4
4
  * the top of the compiled file, but it's generally better to create a new file per style scope.
5
5
  *
6
6
  *= require spree/frontend
7
+ *= require_self
7
8
  *= require_tree .
8
9
  */
data/spec/examples.txt ADDED
@@ -0,0 +1,4 @@
1
+ example_id | status | run_time |
2
+ ---------------------------------- | ------ | --------------- |
3
+ ./spec/solidus_i18n_spec.rb[1:1:1] | passed | 0.00272 seconds |
4
+ ./spec/solidus_i18n_spec.rb[1:1:2] | passed | 0.68848 seconds |
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.describe 'solidus_i18n' do
6
+ describe 'defined locales' do
7
+ subject do
8
+ I18n.available_locales.select do |locale|
9
+ I18n.t('spree.i18n.this_file_language', locale: locale, fallback: false, default: nil)
10
+ end
11
+ end
12
+
13
+ it 'contains the added locales' do
14
+ # Add to this list when adding/removing locales
15
+ expect(subject).to match_array %i[
16
+ en
17
+ zh-CN
18
+ cs
19
+ zh-TW
20
+ it
21
+ nl
22
+ da
23
+ tr
24
+ id
25
+ ro
26
+ pt-BR
27
+ ja
28
+ es
29
+ fr
30
+ de
31
+ ru
32
+ uk
33
+ ko
34
+ pt
35
+ et
36
+ sk
37
+ pl
38
+ nb
39
+ fa
40
+ fi
41
+ en-NZ
42
+ en-IN
43
+ en-AU
44
+ bg
45
+ en-GB
46
+ de-CH
47
+ es-MX
48
+ es-CL
49
+ th
50
+ ca
51
+ vi
52
+ sv
53
+ es-EC
54
+ lv
55
+ sl-SI
56
+ ]
57
+ end
58
+
59
+ it 'has a unique description for each locale' do
60
+ descriptions = subject.map do |locale|
61
+ I18n.t('spree.i18n.this_file_language', locale: locale)
62
+ end
63
+
64
+ expect(descriptions.uniq).to eq(descriptions)
65
+ end
66
+ end
67
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,18 +1,22 @@
1
- require 'simplecov'
2
- SimpleCov.start 'rails'
1
+ # frozen_string_literal: true
3
2
 
3
+ # Configure Rails Environment
4
4
  ENV['RAILS_ENV'] ||= 'test'
5
5
 
6
- begin
7
- require File.expand_path('../dummy/config/environment', __FILE__)
8
- rescue LoadError
9
- puts 'Could not load dummy application. Please ensure you have run `bundle exec rake test_app`'
10
- exit
11
- end
6
+ # Run Coverage report
7
+ require 'solidus_dev_support/rspec/coverage'
8
+
9
+ require File.expand_path('dummy/config/environment.rb', __dir__)
10
+
11
+ # Requires factories and other useful helpers defined in spree_core.
12
+ require 'solidus_dev_support/rspec/feature_helper'
12
13
 
13
- require 'pry'
14
- require 'ffaker'
15
- require 'rspec/rails'
14
+ # Requires supporting ruby files with custom matchers and macros, etc,
15
+ # in spec/support/ and its subdirectories.
16
+ Dir[File.join(File.dirname(__FILE__), 'support/**/*.rb')].each { |f| require f }
17
+
18
+ # Requires factories defined in lib/solidus_i18n/factories.rb
19
+ require 'solidus_i18n/factories'
16
20
 
17
21
  RSpec.configure do |config|
18
22
  config.fail_fast = false
@@ -27,5 +31,3 @@ RSpec.configure do |config|
27
31
  expectations.syntax = :expect
28
32
  end
29
33
  end
30
-
31
- Dir[File.join(File.dirname(__FILE__), '/support/**/*.rb')].each { |file| require file }