hyper-i18n 0.99.0 → 0.99.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -2
  3. data/.travis.yml +5 -13
  4. data/Gemfile +7 -1
  5. data/Gemfile.lock +361 -0
  6. data/Rakefile +9 -0
  7. data/hyper-i18n.gemspec +8 -5
  8. data/lib/hyper-i18n/active_model/name.rb +0 -12
  9. data/lib/hyper-i18n/active_record/class_methods.rb +0 -5
  10. data/lib/hyper-i18n/hyperloop/component/mixin.rb +1 -1
  11. data/lib/hyper-i18n/i18n.rb +15 -0
  12. data/lib/hyper-i18n/version.rb +1 -1
  13. data/spec/hyper_i18n_spec.rb +33 -0
  14. data/spec/spec_helper.rb +11 -33
  15. data/spec/test_app/.gitignore +21 -0
  16. data/spec/test_app/app/assets/config/manifest.js +3 -0
  17. data/spec/test_app/app/assets/images/.keep +0 -0
  18. data/spec/test_app/app/assets/javascripts/application.js +1 -0
  19. data/spec/test_app/app/assets/javascripts/cable.js +13 -0
  20. data/spec/test_app/app/assets/javascripts/channels/.keep +0 -0
  21. data/spec/test_app/app/assets/stylesheets/application.css +15 -0
  22. data/spec/test_app/app/channels/application_cable/channel.rb +4 -0
  23. data/spec/test_app/app/channels/application_cable/connection.rb +4 -0
  24. data/spec/test_app/app/controllers/application_controller.rb +3 -0
  25. data/spec/test_app/app/controllers/concerns/.keep +0 -0
  26. data/spec/test_app/app/controllers/test_controller.rb +10 -0
  27. data/spec/test_app/app/helpers/application_helper.rb +2 -0
  28. data/spec/test_app/app/jobs/application_job.rb +2 -0
  29. data/spec/test_app/app/mailers/application_mailer.rb +4 -0
  30. data/spec/test_app/app/models/application_record.rb +3 -0
  31. data/spec/test_app/app/models/concerns/.keep +0 -0
  32. data/spec/test_app/app/views/layouts/application.html.erb +14 -0
  33. data/spec/test_app/app/views/layouts/mailer.html.erb +13 -0
  34. data/spec/test_app/app/views/layouts/mailer.text.erb +1 -0
  35. data/spec/test_app/bin/bundle +3 -0
  36. data/spec/test_app/bin/rails +9 -0
  37. data/spec/test_app/bin/rake +9 -0
  38. data/spec/test_app/bin/setup +34 -0
  39. data/spec/test_app/bin/spring +17 -0
  40. data/spec/test_app/bin/update +29 -0
  41. data/spec/test_app/config/application.rb +19 -0
  42. data/spec/test_app/config/boot.rb +3 -0
  43. data/spec/test_app/config/cable.yml +9 -0
  44. data/spec/test_app/config/database.yml +25 -0
  45. data/spec/test_app/config/environment.rb +5 -0
  46. data/spec/test_app/config/environments/development.rb +41 -0
  47. data/spec/test_app/config/environments/production.rb +86 -0
  48. data/spec/test_app/config/environments/test.rb +46 -0
  49. data/spec/test_app/config/initializers/application_controller_renderer.rb +6 -0
  50. data/spec/test_app/config/initializers/assets.rb +12 -0
  51. data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
  52. data/spec/test_app/config/initializers/cookies_serializer.rb +5 -0
  53. data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  54. data/spec/test_app/config/initializers/hyperloop.rb +4 -0
  55. data/spec/test_app/config/initializers/inflections.rb +16 -0
  56. data/spec/test_app/config/initializers/mime_types.rb +4 -0
  57. data/spec/test_app/config/initializers/new_framework_defaults.rb +21 -0
  58. data/spec/test_app/config/initializers/session_store.rb +3 -0
  59. data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
  60. data/spec/test_app/config/locales/en.yml +11 -0
  61. data/spec/test_app/config/puma.rb +47 -0
  62. data/spec/test_app/config/routes.rb +4 -0
  63. data/spec/test_app/config/secrets.yml +22 -0
  64. data/spec/test_app/config/spring.rb +6 -0
  65. data/spec/test_app/config.ru +5 -0
  66. data/spec/test_app/db/seeds.rb +7 -0
  67. data/spec/test_app/lib/assets/.keep +0 -0
  68. data/spec/test_app/lib/tasks/.keep +0 -0
  69. data/spec/test_app/log/.keep +0 -0
  70. data/spec/test_app/public/404.html +67 -0
  71. data/spec/test_app/public/422.html +67 -0
  72. data/spec/test_app/public/500.html +66 -0
  73. data/spec/test_app/public/apple-touch-icon-precomposed.png +0 -0
  74. data/spec/test_app/public/apple-touch-icon.png +0 -0
  75. data/spec/test_app/public/favicon.ico +0 -0
  76. data/spec/test_app/public/robots.txt +5 -0
  77. data/spec/test_app/tmp/.keep +0 -0
  78. data/spec/test_app/vendor/assets/javascripts/.keep +0 -0
  79. data/spec/test_app/vendor/assets/stylesheets/.keep +0 -0
  80. metadata +130 -22
  81. data/CODE_OF_CONDUCT.md +0 -74
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ mount Hyperloop::Engine => "/hyperloop_engine"
3
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: d907ecfb468186a10f6ef536051052ff3796339a58bae3373d2c8e0759ec1d62f30d62fa4f5bd505a7b75f0ad7d2793c5406b35cfcd685736f4ab66b7ebc0c55
15
+
16
+ test:
17
+ secret_key_base: 9b8172685feb971cd8f8fe5f0683082b580c55cfd84b91897344beb71a423ffb56e68f90668ce77d7384c4444a7df63edfaa8cbb938ecf4cb6fa839f58e983fa
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ %w(
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ).each { |path| Spring.watch(path) }
@@ -0,0 +1,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
+ # Character.create(name: 'Luke', movie: movies.first)
File without changes
File without changes
File without changes
@@ -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
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ 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
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ 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>
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
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ 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
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ 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>
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
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ 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
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ 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>
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,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,31 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyper-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.99.0
4
+ version: 0.99.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - adamcreekroad
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-14 00:00:00.000000000 Z
11
+ date: 2018-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: i18n
14
+ name: hyper-operation
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 0.99.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: 0.99.1
27
27
  - !ruby/object:Gem::Dependency
28
- name: hyper-component
28
+ name: i18n
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
@@ -39,27 +39,27 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: hyper-operation
42
+ name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :runtime
47
+ version: 1.16.0
48
+ type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: 1.16.0
55
55
  - !ruby/object:Gem::Dependency
56
- name: hyper-store
56
+ name: chromedriver-helper
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- type: :runtime
62
+ type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -67,21 +67,49 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: bundler
70
+ name: hyper-model
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '='
74
+ - !ruby/object:Gem::Version
75
+ version: 0.99.1
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '='
81
+ - !ruby/object:Gem::Version
82
+ version: 0.99.1
83
+ - !ruby/object:Gem::Dependency
84
+ name: hyper-spec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 0.99.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 0.99.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: opal-rails
71
99
  requirement: !ruby/object:Gem::Requirement
72
100
  requirements:
73
101
  - - "~>"
74
102
  - !ruby/object:Gem::Version
75
- version: '1.15'
103
+ version: 0.9.4
76
104
  type: :development
77
105
  prerelease: false
78
106
  version_requirements: !ruby/object:Gem::Requirement
79
107
  requirements:
80
108
  - - "~>"
81
109
  - !ruby/object:Gem::Version
82
- version: '1.15'
110
+ version: 0.9.4
83
111
  - !ruby/object:Gem::Dependency
84
- name: chromedriver-helper
112
+ name: pry
85
113
  requirement: !ruby/object:Gem::Requirement
86
114
  requirements:
87
115
  - - ">="
@@ -95,7 +123,7 @@ dependencies:
95
123
  - !ruby/object:Gem::Version
96
124
  version: '0'
97
125
  - !ruby/object:Gem::Dependency
98
- name: pry
126
+ name: puma
99
127
  requirement: !ruby/object:Gem::Requirement
100
128
  requirements:
101
129
  - - ">="
@@ -138,6 +166,20 @@ dependencies:
138
166
  version: '0'
139
167
  - !ruby/object:Gem::Dependency
140
168
  name: rubocop
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: 0.51.0
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: 0.51.0
181
+ - !ruby/object:Gem::Dependency
182
+ name: sqlite3
141
183
  requirement: !ruby/object:Gem::Requirement
142
184
  requirements:
143
185
  - - ">="
@@ -162,8 +204,8 @@ files:
162
204
  - ".gitignore"
163
205
  - ".rubocop.yml"
164
206
  - ".travis.yml"
165
- - CODE_OF_CONDUCT.md
166
207
  - Gemfile
208
+ - Gemfile.lock
167
209
  - LICENSE.txt
168
210
  - README.md
169
211
  - Rakefile
@@ -180,7 +222,73 @@ files:
180
222
  - lib/hyper-i18n/operations/translate.rb
181
223
  - lib/hyper-i18n/stores/i18n_store.rb
182
224
  - lib/hyper-i18n/version.rb
225
+ - spec/hyper_i18n_spec.rb
183
226
  - spec/spec_helper.rb
227
+ - spec/test_app/.gitignore
228
+ - spec/test_app/app/assets/config/manifest.js
229
+ - spec/test_app/app/assets/images/.keep
230
+ - spec/test_app/app/assets/javascripts/application.js
231
+ - spec/test_app/app/assets/javascripts/cable.js
232
+ - spec/test_app/app/assets/javascripts/channels/.keep
233
+ - spec/test_app/app/assets/stylesheets/application.css
234
+ - spec/test_app/app/channels/application_cable/channel.rb
235
+ - spec/test_app/app/channels/application_cable/connection.rb
236
+ - spec/test_app/app/controllers/application_controller.rb
237
+ - spec/test_app/app/controllers/concerns/.keep
238
+ - spec/test_app/app/controllers/test_controller.rb
239
+ - spec/test_app/app/helpers/application_helper.rb
240
+ - spec/test_app/app/jobs/application_job.rb
241
+ - spec/test_app/app/mailers/application_mailer.rb
242
+ - spec/test_app/app/models/application_record.rb
243
+ - spec/test_app/app/models/concerns/.keep
244
+ - spec/test_app/app/views/layouts/application.html.erb
245
+ - spec/test_app/app/views/layouts/mailer.html.erb
246
+ - spec/test_app/app/views/layouts/mailer.text.erb
247
+ - spec/test_app/bin/bundle
248
+ - spec/test_app/bin/rails
249
+ - spec/test_app/bin/rake
250
+ - spec/test_app/bin/setup
251
+ - spec/test_app/bin/spring
252
+ - spec/test_app/bin/update
253
+ - spec/test_app/config.ru
254
+ - spec/test_app/config/application.rb
255
+ - spec/test_app/config/boot.rb
256
+ - spec/test_app/config/cable.yml
257
+ - spec/test_app/config/database.yml
258
+ - spec/test_app/config/environment.rb
259
+ - spec/test_app/config/environments/development.rb
260
+ - spec/test_app/config/environments/production.rb
261
+ - spec/test_app/config/environments/test.rb
262
+ - spec/test_app/config/initializers/application_controller_renderer.rb
263
+ - spec/test_app/config/initializers/assets.rb
264
+ - spec/test_app/config/initializers/backtrace_silencers.rb
265
+ - spec/test_app/config/initializers/cookies_serializer.rb
266
+ - spec/test_app/config/initializers/filter_parameter_logging.rb
267
+ - spec/test_app/config/initializers/hyperloop.rb
268
+ - spec/test_app/config/initializers/inflections.rb
269
+ - spec/test_app/config/initializers/mime_types.rb
270
+ - spec/test_app/config/initializers/new_framework_defaults.rb
271
+ - spec/test_app/config/initializers/session_store.rb
272
+ - spec/test_app/config/initializers/wrap_parameters.rb
273
+ - spec/test_app/config/locales/en.yml
274
+ - spec/test_app/config/puma.rb
275
+ - spec/test_app/config/routes.rb
276
+ - spec/test_app/config/secrets.yml
277
+ - spec/test_app/config/spring.rb
278
+ - spec/test_app/db/seeds.rb
279
+ - spec/test_app/lib/assets/.keep
280
+ - spec/test_app/lib/tasks/.keep
281
+ - spec/test_app/log/.keep
282
+ - spec/test_app/public/404.html
283
+ - spec/test_app/public/422.html
284
+ - spec/test_app/public/500.html
285
+ - spec/test_app/public/apple-touch-icon-precomposed.png
286
+ - spec/test_app/public/apple-touch-icon.png
287
+ - spec/test_app/public/favicon.ico
288
+ - spec/test_app/public/robots.txt
289
+ - spec/test_app/tmp/.keep
290
+ - spec/test_app/vendor/assets/javascripts/.keep
291
+ - spec/test_app/vendor/assets/stylesheets/.keep
184
292
  homepage: https://www.github.com/ruby-hyperloop/hyper-i18n
185
293
  licenses:
186
294
  - MIT
data/CODE_OF_CONDUCT.md DELETED
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at adamgeorge.31@gmail.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/