ecm_translations2_backend 1.0.0

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 (32) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +37 -0
  4. data/Rakefile +19 -0
  5. data/app/assets/javascripts/ecm/translations/backend/application.js +13 -0
  6. data/app/assets/javascripts/ecm_translations_backend.js +1 -0
  7. data/app/assets/stylesheets/ecm/translations/backend/application.css +14 -0
  8. data/app/assets/stylesheets/ecm_translations_backend.css +3 -0
  9. data/app/controllers/ecm/translations/backend/application_controller.rb +8 -0
  10. data/app/controllers/ecm/translations/backend/home_controller.rb +6 -0
  11. data/app/controllers/ecm/translations/backend/translations_controller.rb +34 -0
  12. data/app/helpers/ecm/translations/backend/application_helper.rb +8 -0
  13. data/app/policies/ecm/translations/backend/engine_policy.rb +4 -0
  14. data/app/policies/ecm/translations/translation_policy.rb +4 -0
  15. data/app/views/ecm/translations/backend/translations/_form.html.haml +6 -0
  16. data/app/views/ecm/translations/backend/translations/_scopes.html.haml +1 -0
  17. data/app/views/ecm/translations/backend/translations/_search.html.haml +2 -0
  18. data/app/views/ecm/translations/backend/translations/_table.html.haml +5 -0
  19. data/app/views/layouts/ecm/translations/backend/application.html.erb +14 -0
  20. data/config/locales/de.yml +10 -0
  21. data/config/rbac.yml +24 -0
  22. data/config/routes.rb +6 -0
  23. data/lib/ecm/translations/backend.rb +9 -0
  24. data/lib/ecm/translations/backend/configuration.rb +18 -0
  25. data/lib/ecm/translations/backend/engine.rb +14 -0
  26. data/lib/ecm/translations/backend/version.rb +7 -0
  27. data/lib/ecm_translations2_backend.rb +10 -0
  28. data/lib/generators/ecm/translations/backend/install/install_generator.rb +33 -0
  29. data/lib/generators/ecm/translations/backend/install/templates/ecm_translations_backend.rb +14 -0
  30. data/lib/generators/ecm/translations/backend/install/templates/routes.source +4 -0
  31. data/lib/tasks/ecm/translations/backend_tasks.rake +4 -0
  32. metadata +271 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1328da249899a949e4e7d177da201913aecaf158
4
+ data.tar.gz: 459a36f0d40ebc9b27ba61098c48df3b90ebe6fd
5
+ SHA512:
6
+ metadata.gz: f6a7b61e9e07314f4d59300ee5019b6d05367712d77d4e35a8505ea2ec1721be0a7e695383e78758d770ca02b82d737b2cb0a663dc34893ce654ffe62d03902c
7
+ data.tar.gz: 564b80c59f9d1628f0899d48b9cce6d06d161df7ab6b8b27f44349ee7645cc59ab1eb1f975bb3647ddd6fb826c9b8457cbda6bfb5cfebd81066e758b9dd341c3
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2015 Roberto Vasquez Angel
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,37 @@
1
+ = ECM Translations 2 Backend
2
+
3
+ = Prerequisites
4
+
5
+ Install ecm_translations2
6
+
7
+ = Installation
8
+
9
+ Add it to your Gemfile:
10
+
11
+ # Gemfile
12
+ gem 'route_translator'
13
+ gem 'itsf_backend'
14
+ gem 'ecm_translations2_backend'
15
+
16
+ Generate the initializer, backend controller and routes:
17
+
18
+ rails g itsf:backend:install
19
+ rails g ecm:translations:backend:install
20
+
21
+ Register the backend in the ITSF Backend configuration:
22
+
23
+ # config/initializers/itsf_backend.rb
24
+ Itsf::Backend.configure do |config|
25
+ config.backend_engines = [
26
+ Ecm::Translations::Backend::Engine
27
+ ]
28
+ end
29
+
30
+ = How to run specs
31
+
32
+ gem install bundler
33
+ bundle
34
+ cd spec/dummy && rake db:migrate RAILS_ENV=test && cd ../..
35
+ guard
36
+
37
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,19 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Ecm::Translations::Backend'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ Bundler::GemHelper.install_tasks
18
+
19
+ require 'rails/dummy/tasks'
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree ./application
@@ -0,0 +1 @@
1
+ //= require ecm/translations/backend/application
@@ -0,0 +1,14 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. It is generally better to create a new file per style scope.
11
+ *
12
+ *= require_tree ./application
13
+ *= require_self
14
+ */
@@ -0,0 +1,3 @@
1
+ /*
2
+ *= require ecm/translations/backend/application
3
+ */
@@ -0,0 +1,8 @@
1
+ module Ecm
2
+ module Translations
3
+ module Backend
4
+ class ApplicationController < ActionController::Base
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ module Ecm::Translations::Backend
2
+ class HomeController < Itsf::Backend::HomeController
3
+ def index
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,34 @@
1
+ class Ecm::Translations::Backend::TranslationsController < Itsf::Backend::Resource::BaseController
2
+ def self.resource_class
3
+ # Set the resource class here.
4
+ #
5
+ # Default: Ecm::Translations::Translation
6
+ #
7
+ Ecm::Translations::Translation
8
+ end
9
+
10
+ private
11
+
12
+ def collection_scope
13
+ # Customize the collection scope here for collection retrival (i.e. for the
14
+ # index action).
15
+ #
16
+ # Example: current_user.posts.includes(:comments)
17
+ #
18
+ # Default: resource_class
19
+ #
20
+ resource_class
21
+ end
22
+
23
+ def permitted_params
24
+ # Set the allowed params, for your create and update methods.
25
+ #
26
+ # Example: params
27
+ # .require(:ecm_translations_translation)
28
+ # .permit(:title, :body)
29
+ #
30
+ params
31
+ .require(:ecm_translations_translation)
32
+ .permit(:locale, :key, :value, :interpolations, :is_proc)
33
+ end
34
+ end
@@ -0,0 +1,8 @@
1
+ module Ecm
2
+ module Translations
3
+ module Backend
4
+ module ApplicationHelper
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Translations::Backend
2
+ class EnginePolicy < Itsf::Backend::EnginePolicy
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Translations
2
+ class TranslationPolicy < Itsf::Backend::BasePolicy
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ .well
2
+ = form.input :locale, collection: I18n.available_locales
3
+ = form.input :key
4
+ = form.input :value
5
+ = form.input :interpolations
6
+ = form.input :is_proc
@@ -0,0 +1 @@
1
+ = form.scopes :all, :not_translated, :is_proc
@@ -0,0 +1,2 @@
1
+ = form.search :key_cont
2
+ = form.search :value_cont
@@ -0,0 +1,5 @@
1
+ = table.column :locale
2
+ = table.column :key
3
+ = table.column :value
4
+ = table.column :is_proc
5
+ = table.timestamps
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Backend</title>
5
+ <%= stylesheet_link_tag "ecm/translations/backend/application", media: "all" %>
6
+ <%= javascript_include_tag "ecm/translations/backend/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,10 @@
1
+ de:
2
+ classes:
3
+ ecm/translations/backend/engine: Übersetzungen
4
+ activerecord:
5
+ scopes:
6
+ is_proc: Prozeduren
7
+ not_translated: Ohne Übersetzung
8
+ routes:
9
+ mount:
10
+ ecm_translations_backend: '/backend/uebersetzungen'
data/config/rbac.yml ADDED
@@ -0,0 +1,24 @@
1
+ defaults:
2
+ permissions:
3
+ - ecm/translations/backend/engine
4
+ - ecm/translations/translation/index
5
+ - ecm/translations/translation/show
6
+ - ecm/translations/translation/new
7
+ - ecm/translations/translation/create
8
+ - ecm/translations/translation/edit
9
+ - ecm/translations/translation/update
10
+ - ecm/translations/translation/destroy
11
+ roles:
12
+ ecm/translations/administrator:
13
+ - ecm/translations/backend/engine
14
+ - ecm/translations/translation/index
15
+ - ecm/translations/translation/show
16
+ - ecm/translations/translation/new
17
+ - ecm/translations/translation/create
18
+ - ecm/translations/translation/edit
19
+ - ecm/translations/translation/update
20
+ - ecm/translations/translation/destroy
21
+ ecm/translations/reviewer:
22
+ - ecm/translations/backend/engine
23
+ - ecm/translations/translation/index
24
+ - ecm/translations/translation/show
data/config/routes.rb ADDED
@@ -0,0 +1,6 @@
1
+ Ecm::Translations::Backend::Engine.routes.draw do
2
+
3
+ resources :translations
4
+
5
+ root to: 'home#index'
6
+ end
@@ -0,0 +1,9 @@
1
+ require 'ecm/translations/backend/configuration'
2
+
3
+ module Ecm
4
+ module Translations
5
+ module Backend
6
+ extend Configuration
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,18 @@
1
+ require 'active_support/core_ext/module/delegation'
2
+ require 'active_support/core_ext/module/attribute_accessors'
3
+
4
+ module Ecm
5
+ module Translations
6
+ module Backend
7
+ module Configuration
8
+ def configure
9
+ yield self
10
+ end
11
+
12
+ mattr_accessor :registered_controllers do
13
+ -> {[]}
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,14 @@
1
+ module Ecm
2
+ module Translations
3
+ module Backend
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Ecm::Translations::Backend
6
+
7
+ initializer "ecm_translations_backend.asset_pipeline" do |app|
8
+ app.config.assets.precompile << 'ecm_translations_backend.js'
9
+ app.config.assets.precompile << 'ecm_translations_backend.css'
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,7 @@
1
+ module Ecm
2
+ module Translations
3
+ module Backend
4
+ VERSION = '1.0.0'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'ecm_translations2'
2
+
3
+ require 'itsf_backend'
4
+ require 'coffee-rails'
5
+ require 'jquery-rails'
6
+ require 'rails-i18n'
7
+ require 'route_translator'
8
+
9
+ require 'ecm/translations/backend'
10
+ require 'ecm/translations/backend/engine'
@@ -0,0 +1,33 @@
1
+ module Ecm
2
+ module Translations
3
+ module Backend
4
+ module Generators
5
+ class InstallGenerator < Rails::Generators::Base
6
+ desc 'Generates the intializer'
7
+
8
+ source_root File.expand_path('../templates', __FILE__)
9
+
10
+ def generate_initializer
11
+ copy_file 'ecm_translations_backend.rb', 'config/initializers/ecm_translations_backend.rb'
12
+ end
13
+
14
+ def generate_routes
15
+ route File.read(File.join(File.expand_path('../templates', __FILE__), 'routes.source'))
16
+ end
17
+
18
+ def add_to_itsf_backend
19
+ insert_into_itsf_backend_config(Ecm::Translations::Backend::Engine)
20
+ end
21
+
22
+ private
23
+
24
+ def insert_into_itsf_backend_config(engine_name)
25
+ inject_into_file 'config/initializers/001_itsf_backend.rb', after: "config.backend_engines = %w(\n" do
26
+ " #{engine_name}\n"
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,14 @@
1
+ Ecm::Translations::Backend.configure do |config|
2
+ # Set the resources, that will be shown in the backend menu in development
3
+ # mode. This needs to be set to get a correct menu because
4
+ # Controller.descendants is empty in development. This is an eager load
5
+ # issue.
6
+ #
7
+ # Default: config.registered_controllers = -> {[
8
+ # Ecm::Translations::Backend::TranslationsController
9
+ # ]}
10
+ #
11
+ config.registered_controllers = -> {[
12
+ Ecm::Translations::Backend::TranslationsController
13
+ ]}
14
+ end
@@ -0,0 +1,4 @@
1
+
2
+ localized do
3
+ mount Ecm::Translations::Backend::Engine => '/backend/ecm/translations'
4
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :backend do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,271 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ecm_translations2_backend
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Roberto Vasquez Angel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-02-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.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.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: ecm_translations2
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: itsf_backend
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: rails-i18n
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
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: route_translator
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
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: coffee-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: jquery-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: therubyracer
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rails-dummy
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: sqlite3
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: i18n-debug
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: guard-bundler
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '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'
181
+ - !ruby/object:Gem::Dependency
182
+ name: guard-rails
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: rubocop
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ description: Provides a ITSF Backend based Backend for ECM Translations 2
210
+ email:
211
+ - roberto@vasquez-angel.de
212
+ executables: []
213
+ extensions: []
214
+ extra_rdoc_files: []
215
+ files:
216
+ - MIT-LICENSE
217
+ - README.rdoc
218
+ - Rakefile
219
+ - app/assets/javascripts/ecm/translations/backend/application.js
220
+ - app/assets/javascripts/ecm_translations_backend.js
221
+ - app/assets/stylesheets/ecm/translations/backend/application.css
222
+ - app/assets/stylesheets/ecm_translations_backend.css
223
+ - app/controllers/ecm/translations/backend/application_controller.rb
224
+ - app/controllers/ecm/translations/backend/home_controller.rb
225
+ - app/controllers/ecm/translations/backend/translations_controller.rb
226
+ - app/helpers/ecm/translations/backend/application_helper.rb
227
+ - app/policies/ecm/translations/backend/engine_policy.rb
228
+ - app/policies/ecm/translations/translation_policy.rb
229
+ - app/views/ecm/translations/backend/translations/_form.html.haml
230
+ - app/views/ecm/translations/backend/translations/_scopes.html.haml
231
+ - app/views/ecm/translations/backend/translations/_search.html.haml
232
+ - app/views/ecm/translations/backend/translations/_table.html.haml
233
+ - app/views/layouts/ecm/translations/backend/application.html.erb
234
+ - config/locales/de.yml
235
+ - config/rbac.yml
236
+ - config/routes.rb
237
+ - lib/ecm/translations/backend.rb
238
+ - lib/ecm/translations/backend/configuration.rb
239
+ - lib/ecm/translations/backend/engine.rb
240
+ - lib/ecm/translations/backend/version.rb
241
+ - lib/ecm_translations2_backend.rb
242
+ - lib/generators/ecm/translations/backend/install/install_generator.rb
243
+ - lib/generators/ecm/translations/backend/install/templates/ecm_translations_backend.rb
244
+ - lib/generators/ecm/translations/backend/install/templates/routes.source
245
+ - lib/tasks/ecm/translations/backend_tasks.rake
246
+ homepage: https://github.com/robotex82/ecm_translations2_backend
247
+ licenses:
248
+ - MIT
249
+ metadata: {}
250
+ post_install_message:
251
+ rdoc_options: []
252
+ require_paths:
253
+ - lib
254
+ required_ruby_version: !ruby/object:Gem::Requirement
255
+ requirements:
256
+ - - ">="
257
+ - !ruby/object:Gem::Version
258
+ version: '0'
259
+ required_rubygems_version: !ruby/object:Gem::Requirement
260
+ requirements:
261
+ - - ">="
262
+ - !ruby/object:Gem::Version
263
+ version: '0'
264
+ requirements: []
265
+ rubyforge_project:
266
+ rubygems_version: 2.4.8
267
+ signing_key:
268
+ specification_version: 4
269
+ summary: Backend Module for ECM Translations 2
270
+ test_files: []
271
+ has_rdoc: