translation_engine 0.0.1

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 (103) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/javascripts/translation_engine/screenshots.js.coffee +225 -0
  5. data/app/assets/stylesheets/translation_engine/screenshots.css +23 -0
  6. data/app/middlewares/translation_engine/catcher_middleware.rb +64 -0
  7. data/app/middlewares/translation_engine/connection_exception_middleware.rb +18 -0
  8. data/app/middlewares/translation_engine/keys_middleware.rb +31 -0
  9. data/app/middlewares/translation_engine/screenshots_middleware.rb +31 -0
  10. data/app/models/translation_engine/backend.rb +79 -0
  11. data/app/models/translation_engine/connection.rb +75 -0
  12. data/app/models/translation_engine/connection_error.rb +2 -0
  13. data/app/models/translation_engine/downloader.rb +72 -0
  14. data/app/models/translation_engine/error.rb +2 -0
  15. data/app/models/translation_engine/release.rb +26 -0
  16. data/app/models/translation_engine/translation.rb +67 -0
  17. data/config/initializers/translation_engine.rb +8 -0
  18. data/lib/tasks/translation_engine_tasks.rake +83 -0
  19. data/lib/translation_engine.rb +10 -0
  20. data/lib/translation_engine/engine.rb +32 -0
  21. data/lib/translation_engine/version.rb +3 -0
  22. data/test/dummy/README.rdoc +28 -0
  23. data/test/dummy/Rakefile +6 -0
  24. data/test/dummy/app/assets/javascripts/application.js +15 -0
  25. data/test/dummy/app/assets/javascripts/root.js +2 -0
  26. data/test/dummy/app/assets/stylesheets/application.css +16 -0
  27. data/test/dummy/app/assets/stylesheets/root.css +4 -0
  28. data/test/dummy/app/controllers/application_controller.rb +5 -0
  29. data/test/dummy/app/controllers/root_controller.rb +4 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/helpers/root_helper.rb +2 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/app/views/root/index.html.erb +8 -0
  34. data/test/dummy/bin/bundle +3 -0
  35. data/test/dummy/bin/rails +4 -0
  36. data/test/dummy/bin/rake +4 -0
  37. data/test/dummy/bin/setup +29 -0
  38. data/test/dummy/config.ru +4 -0
  39. data/test/dummy/config/application.rb +26 -0
  40. data/test/dummy/config/boot.rb +5 -0
  41. data/test/dummy/config/database.yml +25 -0
  42. data/test/dummy/config/environment.rb +5 -0
  43. data/test/dummy/config/environments/development.rb +41 -0
  44. data/test/dummy/config/environments/production.rb +79 -0
  45. data/test/dummy/config/environments/test.rb +42 -0
  46. data/test/dummy/config/initializers/assets.rb +11 -0
  47. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  48. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  49. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/test/dummy/config/initializers/inflections.rb +16 -0
  51. data/test/dummy/config/initializers/mime_types.rb +4 -0
  52. data/test/dummy/config/initializers/session_store.rb +3 -0
  53. data/test/dummy/config/initializers/translation_engine.rb +7 -0
  54. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/test/dummy/config/locales/en.yml +23 -0
  56. data/test/dummy/config/routes.rb +58 -0
  57. data/test/dummy/config/secrets.yml +22 -0
  58. data/test/dummy/db/development.sqlite3 +0 -0
  59. data/test/dummy/db/test.sqlite3 +0 -0
  60. data/test/dummy/log/development.log +20917 -0
  61. data/test/dummy/log/test.log +13 -0
  62. data/test/dummy/public/404.html +67 -0
  63. data/test/dummy/public/422.html +67 -0
  64. data/test/dummy/public/500.html +66 -0
  65. data/test/dummy/public/favicon.ico +0 -0
  66. data/test/dummy/test/controllers/root_controller_test.rb +9 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/00744134f1b8c820c724a9d6207f3a7a +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/25e260f6a1dc0c4484c200da624af92e +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/2c59dca85b9e8c86af73e35e031fbbdc +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/3065ce12758c77c2a4921568b7e742a0 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/379aa3c595d4aa45885d1db5fbcb6e3a +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/3824972f4a7973916302b2649b498d5c +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/3c856723c34a3a47f181661bc3499592 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/41448ad2a85326b721f1e060b86dc3dc +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/4387b22d35f85d5eb8336a8ed1381c5c +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/48388ecb825f9d2b3ac4af78175993b2 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/55588f5ab129d88af0eef8e14f0f57aa +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/6c9de7f2c8ef919141331199520c6890 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/6ef9396e711eaa215cf2fee6f0102551 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/7c8b616251089af5cf0b4bddc02c2cf1 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/83e8ae6039d56661189e1fb4812c89f0 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/91ae3870a5845130aa888fbe093d1554 +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/9b474687caa91b30ec2214bdd9f54f33 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/b6c894a4da0fd8d4cd152a353d826045 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/c17e2e13afcf1d3570e8a857ccede2c1 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/efb95a602af8237a4970b7c683dae187 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/f603eeacf1822560ceb9ac4102ff8430 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/48388ecb825f9d2b3ac4af78175993b2 +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/7c8b616251089af5cf0b4bddc02c2cf1 +0 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/83e8ae6039d56661189e1fb4812c89f0 +0 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/efb95a602af8237a4970b7c683dae187 +0 -0
  101. data/test/test_helper.rb +18 -0
  102. data/test/translation_engine_test.rb +7 -0
  103. metadata +310 -0
@@ -0,0 +1,13 @@
1
+  (0.1ms) begin transaction
2
+ ---------------------------------
3
+ TranslationEngineTest: test_truth
4
+ ---------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ -----------------------------------------
8
+ RootControllerTest: test_should_get_index
9
+ -----------------------------------------
10
+ Processing by RootController#index as HTML
11
+ Rendered root/index.html.erb within layouts/application (8.6ms)
12
+ Completed 500 Internal Server Error in 49ms
13
+  (0.1ms) rollback transaction
@@ -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
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class RootControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,18 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
+ require "rails/test_help"
7
+
8
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
9
+ # to be shown.
10
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
11
+
12
+ # Load support files
13
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
+
15
+ # Load fixtures from the engine
16
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
17
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
18
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class TranslationEngineTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, TranslationEngine
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,310 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: translation_engine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ondrej Bartas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-09-09 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.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rails-assets-html2canvas
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sqlite3
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: coffee-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jquery-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Description of TranslationEngine.
98
+ email:
99
+ - ondrej@bartas.cz
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - MIT-LICENSE
105
+ - Rakefile
106
+ - app/assets/javascripts/translation_engine/screenshots.js.coffee
107
+ - app/assets/stylesheets/translation_engine/screenshots.css
108
+ - app/middlewares/translation_engine/catcher_middleware.rb
109
+ - app/middlewares/translation_engine/connection_exception_middleware.rb
110
+ - app/middlewares/translation_engine/keys_middleware.rb
111
+ - app/middlewares/translation_engine/screenshots_middleware.rb
112
+ - app/models/translation_engine/backend.rb
113
+ - app/models/translation_engine/connection.rb
114
+ - app/models/translation_engine/connection_error.rb
115
+ - app/models/translation_engine/downloader.rb
116
+ - app/models/translation_engine/error.rb
117
+ - app/models/translation_engine/release.rb
118
+ - app/models/translation_engine/translation.rb
119
+ - config/initializers/translation_engine.rb
120
+ - lib/tasks/translation_engine_tasks.rake
121
+ - lib/translation_engine.rb
122
+ - lib/translation_engine/engine.rb
123
+ - lib/translation_engine/version.rb
124
+ - test/dummy/README.rdoc
125
+ - test/dummy/Rakefile
126
+ - test/dummy/app/assets/javascripts/application.js
127
+ - test/dummy/app/assets/javascripts/root.js
128
+ - test/dummy/app/assets/stylesheets/application.css
129
+ - test/dummy/app/assets/stylesheets/root.css
130
+ - test/dummy/app/controllers/application_controller.rb
131
+ - test/dummy/app/controllers/root_controller.rb
132
+ - test/dummy/app/helpers/application_helper.rb
133
+ - test/dummy/app/helpers/root_helper.rb
134
+ - test/dummy/app/views/layouts/application.html.erb
135
+ - test/dummy/app/views/root/index.html.erb
136
+ - test/dummy/bin/bundle
137
+ - test/dummy/bin/rails
138
+ - test/dummy/bin/rake
139
+ - test/dummy/bin/setup
140
+ - test/dummy/config.ru
141
+ - test/dummy/config/application.rb
142
+ - test/dummy/config/boot.rb
143
+ - test/dummy/config/database.yml
144
+ - test/dummy/config/environment.rb
145
+ - test/dummy/config/environments/development.rb
146
+ - test/dummy/config/environments/production.rb
147
+ - test/dummy/config/environments/test.rb
148
+ - test/dummy/config/initializers/assets.rb
149
+ - test/dummy/config/initializers/backtrace_silencers.rb
150
+ - test/dummy/config/initializers/cookies_serializer.rb
151
+ - test/dummy/config/initializers/filter_parameter_logging.rb
152
+ - test/dummy/config/initializers/inflections.rb
153
+ - test/dummy/config/initializers/mime_types.rb
154
+ - test/dummy/config/initializers/session_store.rb
155
+ - test/dummy/config/initializers/translation_engine.rb
156
+ - test/dummy/config/initializers/wrap_parameters.rb
157
+ - test/dummy/config/locales/en.yml
158
+ - test/dummy/config/routes.rb
159
+ - test/dummy/config/secrets.yml
160
+ - test/dummy/db/development.sqlite3
161
+ - test/dummy/db/test.sqlite3
162
+ - test/dummy/log/development.log
163
+ - test/dummy/log/test.log
164
+ - test/dummy/public/404.html
165
+ - test/dummy/public/422.html
166
+ - test/dummy/public/500.html
167
+ - test/dummy/public/favicon.ico
168
+ - test/dummy/test/controllers/root_controller_test.rb
169
+ - test/dummy/tmp/cache/assets/development/sprockets/00744134f1b8c820c724a9d6207f3a7a
170
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
171
+ - test/dummy/tmp/cache/assets/development/sprockets/25e260f6a1dc0c4484c200da624af92e
172
+ - test/dummy/tmp/cache/assets/development/sprockets/2c59dca85b9e8c86af73e35e031fbbdc
173
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
174
+ - test/dummy/tmp/cache/assets/development/sprockets/3065ce12758c77c2a4921568b7e742a0
175
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
176
+ - test/dummy/tmp/cache/assets/development/sprockets/379aa3c595d4aa45885d1db5fbcb6e3a
177
+ - test/dummy/tmp/cache/assets/development/sprockets/3824972f4a7973916302b2649b498d5c
178
+ - test/dummy/tmp/cache/assets/development/sprockets/3c856723c34a3a47f181661bc3499592
179
+ - test/dummy/tmp/cache/assets/development/sprockets/41448ad2a85326b721f1e060b86dc3dc
180
+ - test/dummy/tmp/cache/assets/development/sprockets/4387b22d35f85d5eb8336a8ed1381c5c
181
+ - test/dummy/tmp/cache/assets/development/sprockets/48388ecb825f9d2b3ac4af78175993b2
182
+ - test/dummy/tmp/cache/assets/development/sprockets/55588f5ab129d88af0eef8e14f0f57aa
183
+ - test/dummy/tmp/cache/assets/development/sprockets/6c9de7f2c8ef919141331199520c6890
184
+ - test/dummy/tmp/cache/assets/development/sprockets/6ef9396e711eaa215cf2fee6f0102551
185
+ - test/dummy/tmp/cache/assets/development/sprockets/7c8b616251089af5cf0b4bddc02c2cf1
186
+ - test/dummy/tmp/cache/assets/development/sprockets/83e8ae6039d56661189e1fb4812c89f0
187
+ - test/dummy/tmp/cache/assets/development/sprockets/91ae3870a5845130aa888fbe093d1554
188
+ - test/dummy/tmp/cache/assets/development/sprockets/9b474687caa91b30ec2214bdd9f54f33
189
+ - test/dummy/tmp/cache/assets/development/sprockets/b6c894a4da0fd8d4cd152a353d826045
190
+ - test/dummy/tmp/cache/assets/development/sprockets/c17e2e13afcf1d3570e8a857ccede2c1
191
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
192
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
193
+ - test/dummy/tmp/cache/assets/development/sprockets/efb95a602af8237a4970b7c683dae187
194
+ - test/dummy/tmp/cache/assets/development/sprockets/f603eeacf1822560ceb9ac4102ff8430
195
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
196
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
197
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
198
+ - test/dummy/tmp/cache/assets/test/sprockets/48388ecb825f9d2b3ac4af78175993b2
199
+ - test/dummy/tmp/cache/assets/test/sprockets/7c8b616251089af5cf0b4bddc02c2cf1
200
+ - test/dummy/tmp/cache/assets/test/sprockets/83e8ae6039d56661189e1fb4812c89f0
201
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
202
+ - test/dummy/tmp/cache/assets/test/sprockets/efb95a602af8237a4970b7c683dae187
203
+ - test/test_helper.rb
204
+ - test/translation_engine_test.rb
205
+ homepage: http://blueberry.cz
206
+ licenses:
207
+ - MIT
208
+ metadata: {}
209
+ post_install_message:
210
+ rdoc_options: []
211
+ require_paths:
212
+ - lib
213
+ required_ruby_version: !ruby/object:Gem::Requirement
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ version: '0'
218
+ required_rubygems_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ requirements: []
224
+ rubyforge_project:
225
+ rubygems_version: 2.5.1
226
+ signing_key:
227
+ specification_version: 4
228
+ summary: Connects Rails application to Translation Server
229
+ test_files:
230
+ - test/dummy/app/assets/javascripts/application.js
231
+ - test/dummy/app/assets/javascripts/root.js
232
+ - test/dummy/app/assets/stylesheets/application.css
233
+ - test/dummy/app/assets/stylesheets/root.css
234
+ - test/dummy/app/controllers/application_controller.rb
235
+ - test/dummy/app/controllers/root_controller.rb
236
+ - test/dummy/app/helpers/application_helper.rb
237
+ - test/dummy/app/helpers/root_helper.rb
238
+ - test/dummy/app/views/layouts/application.html.erb
239
+ - test/dummy/app/views/root/index.html.erb
240
+ - test/dummy/bin/bundle
241
+ - test/dummy/bin/rails
242
+ - test/dummy/bin/rake
243
+ - test/dummy/bin/setup
244
+ - test/dummy/config/application.rb
245
+ - test/dummy/config/boot.rb
246
+ - test/dummy/config/database.yml
247
+ - test/dummy/config/environment.rb
248
+ - test/dummy/config/environments/development.rb
249
+ - test/dummy/config/environments/production.rb
250
+ - test/dummy/config/environments/test.rb
251
+ - test/dummy/config/initializers/assets.rb
252
+ - test/dummy/config/initializers/backtrace_silencers.rb
253
+ - test/dummy/config/initializers/cookies_serializer.rb
254
+ - test/dummy/config/initializers/filter_parameter_logging.rb
255
+ - test/dummy/config/initializers/inflections.rb
256
+ - test/dummy/config/initializers/mime_types.rb
257
+ - test/dummy/config/initializers/session_store.rb
258
+ - test/dummy/config/initializers/translation_engine.rb
259
+ - test/dummy/config/initializers/wrap_parameters.rb
260
+ - test/dummy/config/locales/en.yml
261
+ - test/dummy/config/routes.rb
262
+ - test/dummy/config/secrets.yml
263
+ - test/dummy/config.ru
264
+ - test/dummy/db/development.sqlite3
265
+ - test/dummy/db/test.sqlite3
266
+ - test/dummy/log/development.log
267
+ - test/dummy/log/test.log
268
+ - test/dummy/public/404.html
269
+ - test/dummy/public/422.html
270
+ - test/dummy/public/500.html
271
+ - test/dummy/public/favicon.ico
272
+ - test/dummy/Rakefile
273
+ - test/dummy/README.rdoc
274
+ - test/dummy/test/controllers/root_controller_test.rb
275
+ - test/dummy/tmp/cache/assets/development/sprockets/00744134f1b8c820c724a9d6207f3a7a
276
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
277
+ - test/dummy/tmp/cache/assets/development/sprockets/25e260f6a1dc0c4484c200da624af92e
278
+ - test/dummy/tmp/cache/assets/development/sprockets/2c59dca85b9e8c86af73e35e031fbbdc
279
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
280
+ - test/dummy/tmp/cache/assets/development/sprockets/3065ce12758c77c2a4921568b7e742a0
281
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
282
+ - test/dummy/tmp/cache/assets/development/sprockets/379aa3c595d4aa45885d1db5fbcb6e3a
283
+ - test/dummy/tmp/cache/assets/development/sprockets/3824972f4a7973916302b2649b498d5c
284
+ - test/dummy/tmp/cache/assets/development/sprockets/3c856723c34a3a47f181661bc3499592
285
+ - test/dummy/tmp/cache/assets/development/sprockets/41448ad2a85326b721f1e060b86dc3dc
286
+ - test/dummy/tmp/cache/assets/development/sprockets/4387b22d35f85d5eb8336a8ed1381c5c
287
+ - test/dummy/tmp/cache/assets/development/sprockets/48388ecb825f9d2b3ac4af78175993b2
288
+ - test/dummy/tmp/cache/assets/development/sprockets/55588f5ab129d88af0eef8e14f0f57aa
289
+ - test/dummy/tmp/cache/assets/development/sprockets/6c9de7f2c8ef919141331199520c6890
290
+ - test/dummy/tmp/cache/assets/development/sprockets/6ef9396e711eaa215cf2fee6f0102551
291
+ - test/dummy/tmp/cache/assets/development/sprockets/7c8b616251089af5cf0b4bddc02c2cf1
292
+ - test/dummy/tmp/cache/assets/development/sprockets/83e8ae6039d56661189e1fb4812c89f0
293
+ - test/dummy/tmp/cache/assets/development/sprockets/91ae3870a5845130aa888fbe093d1554
294
+ - test/dummy/tmp/cache/assets/development/sprockets/9b474687caa91b30ec2214bdd9f54f33
295
+ - test/dummy/tmp/cache/assets/development/sprockets/b6c894a4da0fd8d4cd152a353d826045
296
+ - test/dummy/tmp/cache/assets/development/sprockets/c17e2e13afcf1d3570e8a857ccede2c1
297
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
298
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
299
+ - test/dummy/tmp/cache/assets/development/sprockets/efb95a602af8237a4970b7c683dae187
300
+ - test/dummy/tmp/cache/assets/development/sprockets/f603eeacf1822560ceb9ac4102ff8430
301
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
302
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
303
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
304
+ - test/dummy/tmp/cache/assets/test/sprockets/48388ecb825f9d2b3ac4af78175993b2
305
+ - test/dummy/tmp/cache/assets/test/sprockets/7c8b616251089af5cf0b4bddc02c2cf1
306
+ - test/dummy/tmp/cache/assets/test/sprockets/83e8ae6039d56661189e1fb4812c89f0
307
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
308
+ - test/dummy/tmp/cache/assets/test/sprockets/efb95a602af8237a4970b7c683dae187
309
+ - test/test_helper.rb
310
+ - test/translation_engine_test.rb