ecm_links2_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 (35) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +37 -0
  4. data/Rakefile +20 -0
  5. data/app/assets/javascripts/ecm/links/backend/application.js +13 -0
  6. data/app/assets/javascripts/ecm_links_backend.js +1 -0
  7. data/app/assets/stylesheets/ecm/links/backend/application.css +14 -0
  8. data/app/assets/stylesheets/ecm_links_backend.css +3 -0
  9. data/app/controllers/ecm/links/backend/application_controller.rb +8 -0
  10. data/app/controllers/ecm/links/backend/categories_controller.rb +13 -0
  11. data/app/controllers/ecm/links/backend/home_controller.rb +6 -0
  12. data/app/controllers/ecm/links/backend/links_controller.rb +17 -0
  13. data/app/helpers/ecm/links/backend/application_helper.rb +8 -0
  14. data/app/policies/ecm/links/backend/engine_policy.rb +4 -0
  15. data/app/policies/ecm/links/category_policy.rb +4 -0
  16. data/app/policies/ecm/links/link_policy.rb +4 -0
  17. data/app/views/ecm/links/backend/categories/_form.html.haml +14 -0
  18. data/app/views/ecm/links/backend/categories/_table.html.haml +8 -0
  19. data/app/views/ecm/links/backend/links/_form.html.haml +10 -0
  20. data/app/views/ecm/links/backend/links/_table.html.haml +5 -0
  21. data/app/views/layouts/ecm/links/backend/application.html.erb +14 -0
  22. data/config/locales/de.yml +12 -0
  23. data/config/locales/en.yml +9 -0
  24. data/config/rbac.yml +40 -0
  25. data/config/routes.rb +6 -0
  26. data/lib/ecm/links/backend.rb +9 -0
  27. data/lib/ecm/links/backend/configuration.rb +22 -0
  28. data/lib/ecm/links/backend/engine.rb +14 -0
  29. data/lib/ecm/links/backend/version.rb +7 -0
  30. data/lib/ecm_links2_backend.rb +10 -0
  31. data/lib/generators/ecm/links/backend/install/install_generator.rb +33 -0
  32. data/lib/generators/ecm/links/backend/install/templates/ecm_links_backend.rb +22 -0
  33. data/lib/generators/ecm/links/backend/install/templates/routes.source +4 -0
  34. data/lib/tasks/ecm/links/backend_tasks.rake +4 -0
  35. metadata +260 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 57d82343f43594cb02a6b8fa830b7bbc1489c552
4
+ data.tar.gz: a4d70deb1ca3972955faae8038caf05c8d7ee5d3
5
+ SHA512:
6
+ metadata.gz: 666717b03c4c224721c49132d0b9ec2c6874901b5fe8e533347d0b3e8d3313e9dab0408dd1b20ecad87246503a1b8a1a5ea156c26d78fa72d2b1ed42c705a9a4
7
+ data.tar.gz: ac72df116c0a21a710c61d8fd7689911218a373d34b5cb0ba7ad0b1c69cfb92d4f05237b4682fd34ad3c04f85c046f6709f51dd7e9811e8c0a5fff94fd1d3881
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 Links 2 Backend
2
+
3
+ = Prerequisites
4
+
5
+ Install ecm_links2
6
+
7
+ = Installation
8
+
9
+ Add it to your Gemfile:
10
+
11
+ # Gemfile
12
+ gem 'route_translator'
13
+ gem 'itsf_backend'
14
+ gem 'ecm_links2_backend'
15
+
16
+ Generate the initializer, backend controller and routes:
17
+
18
+ rails g itsf:backend:install
19
+ rails g ecm:links: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::Links::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,20 @@
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::Links::Backend'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+ Bundler::GemHelper.install_tasks
19
+
20
+ 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/links/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/links/backend/application
3
+ */
@@ -0,0 +1,8 @@
1
+ module Ecm
2
+ module Links
3
+ module Backend
4
+ class ApplicationController < ActionController::Base
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,13 @@
1
+ class Ecm::Links::Backend::CategoriesController < Itsf::Backend::Resource::BaseController
2
+ def self.resource_class
3
+ Ecm::Links::Category
4
+ end
5
+
6
+ private
7
+
8
+ def permitted_params
9
+ params
10
+ .require(:ecm_links_category)
11
+ .permit(:parent_id, :locale, :name, :markup_language, :short_description, :long_description, :link_footer_column)
12
+ end
13
+ end
@@ -0,0 +1,6 @@
1
+ module Ecm::Links::Backend
2
+ class HomeController < Itsf::Backend::HomeController
3
+ def index
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,17 @@
1
+ class Ecm::Links::Backend::LinksController < Itsf::Backend::Resource::BaseController
2
+ def self.resource_class
3
+ Ecm::Links::Link
4
+ end
5
+
6
+ private
7
+
8
+ def collection_scope
9
+ resource_class.includes(:ecm_links_category)
10
+ end
11
+
12
+ def permitted_params
13
+ params
14
+ .require(:ecm_links_link)
15
+ .permit(:ecm_links_category_id, :name, :url, :markup_language, :description)
16
+ end
17
+ end
@@ -0,0 +1,8 @@
1
+ module Ecm
2
+ module Links
3
+ module Backend
4
+ module ApplicationHelper
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Links::Backend
2
+ class EnginePolicy < Itsf::Backend::EnginePolicy
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Links
2
+ class CategoryPolicy < Itsf::Backend::BasePolicy
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Links
2
+ class LinkPolicy < Itsf::Backend::BasePolicy
3
+ end
4
+ end
@@ -0,0 +1,14 @@
1
+ .well
2
+ = form.association :parent
3
+
4
+ .well
5
+ = form.input :locale, collection: I18n.available_locales
6
+ = form.input :name
7
+
8
+ .well
9
+ = form.input :markup_language, collection: Ecm::Links::markup_languages
10
+ = form.input :short_description, input_html: { 'data-add-editor': true, 'data-editor-syntax': form.object.markup_language }
11
+ = form.input :long_description, input_html: { 'data-add-editor': true, 'data-editor-syntax': form.object.markup_language }
12
+
13
+ .well
14
+ = form.input :link_footer_column, collection: (1..Ecm::Links::Configuration.link_footer_columns).to_a
@@ -0,0 +1,8 @@
1
+ = table.column :locale
2
+ = table.column :parent
3
+ = table.column :name, class: 'truncate-chars truncate-chars-30'
4
+ = table.column :short_description, class: 'truncate-chars truncate-chars-30'
5
+ = table.column :long_description, class: 'truncate-chars truncate-chars-30'
6
+ = table.column :link_footer_column, class: 'truncate-chars truncate-chars-30'
7
+ = table.column :ecm_links_links_count
8
+ = table.timestamps
@@ -0,0 +1,10 @@
1
+ .well
2
+ = form.association :ecm_links_category
3
+
4
+ .well
5
+ = form.input :name
6
+ = form.input :url
7
+
8
+ .well
9
+ = form.input :markup_language, collection: Ecm::Links::markup_languages
10
+ = form.input :description, input_html: { 'data-add-editor': true, 'data-editor-syntax': form.object.markup_language }
@@ -0,0 +1,5 @@
1
+ = table.association(:ecm_links_category)
2
+ = table.column :name, class: 'truncate-chars truncate-chars-30'
3
+ = table.column :description, class: 'truncate-chars truncate-chars-30'
4
+ = table.timestamps
5
+ = table.column(:additional_actions) { |link| link_to(t('.visit'), link.url, class: 'btn btn-xs btn-primary') }
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Backend</title>
5
+ <%= stylesheet_link_tag "ecm/links/backend/application", media: "all" %>
6
+ <%= javascript_include_tag "ecm/links/backend/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,12 @@
1
+ de:
2
+ classes:
3
+ ecm/links/backend/engine: 'Links'
4
+ ecm:
5
+ links:
6
+ backend:
7
+ links:
8
+ table:
9
+ visit: Link öffnen
10
+ routes:
11
+ mount:
12
+ ecm_links_backend: '/backend/links'
@@ -0,0 +1,9 @@
1
+ en:
2
+ classes:
3
+ ecm/links/backend/engine: 'Links'
4
+ ecm:
5
+ links:
6
+ backend:
7
+ links:
8
+ table:
9
+ visit: Open link
data/config/rbac.yml ADDED
@@ -0,0 +1,40 @@
1
+ defaults:
2
+ permissions:
3
+ - ecm/links/backend/engine
4
+ - ecm/links/category/index
5
+ - ecm/links/category/show
6
+ - ecm/links/category/new
7
+ - ecm/links/category/create
8
+ - ecm/links/category/edit
9
+ - ecm/links/category/update
10
+ - ecm/links/category/destroy
11
+ - ecm/links/link/index
12
+ - ecm/links/link/show
13
+ - ecm/links/link/new
14
+ - ecm/links/link/create
15
+ - ecm/links/link/edit
16
+ - ecm/links/link/update
17
+ - ecm/links/link/destroy
18
+ roles:
19
+ ecm/links/administrator:
20
+ - ecm/links/backend/engine
21
+ - ecm/links/category/index
22
+ - ecm/links/category/show
23
+ - ecm/links/category/new
24
+ - ecm/links/category/create
25
+ - ecm/links/category/edit
26
+ - ecm/links/category/update
27
+ - ecm/links/category/destroy
28
+ - ecm/links/link/index
29
+ - ecm/links/link/show
30
+ - ecm/links/link/new
31
+ - ecm/links/link/create
32
+ - ecm/links/link/edit
33
+ - ecm/links/link/update
34
+ - ecm/links/link/destroy
35
+ ecm/links/reviewer:
36
+ - ecm/links/backend/engine
37
+ - ecm/links/category/index
38
+ - ecm/links/category/show
39
+ - ecm/links/link/index
40
+ - ecm/links/link/show
data/config/routes.rb ADDED
@@ -0,0 +1,6 @@
1
+ Ecm::Links::Backend::Engine.routes.draw do
2
+ resources :categories
3
+ resources :links
4
+
5
+ root to: 'home#index'
6
+ end
@@ -0,0 +1,9 @@
1
+ require 'ecm/links/backend/configuration'
2
+
3
+ module Ecm
4
+ module Links
5
+ module Backend
6
+ extend Configuration
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ require 'active_support/core_ext/module/delegation'
2
+ require 'active_support/core_ext/module/attribute_accessors'
3
+
4
+ module Ecm
5
+ module Links
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
+
16
+ mattr_accessor :registered_services do
17
+ -> {[]}
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,14 @@
1
+ module Ecm
2
+ module Links
3
+ module Backend
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Ecm::Links::Backend
6
+
7
+ initializer "ecm_links_backend.asset_pipeline" do |app|
8
+ app.config.assets.precompile << 'ecm_links_backend.js'
9
+ app.config.assets.precompile << 'ecm_links_backend.css'
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,7 @@
1
+ module Ecm
2
+ module Links
3
+ module Backend
4
+ VERSION = "1.0.0"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'ecm_links2'
2
+ require 'itsf_backend'
3
+ require 'coffee-rails'
4
+ require 'jquery-rails'
5
+ require 'rails-i18n'
6
+ # require 'ransack'
7
+ require 'route_translator'
8
+
9
+ require "ecm/links/backend"
10
+ require "ecm/links/backend/engine"
@@ -0,0 +1,33 @@
1
+ module Ecm
2
+ module Links
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_links_backend.rb', 'config/initializers/ecm_links_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::Links::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,22 @@
1
+ Ecm::Links::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::Links::Backend::CategoriesController,
9
+ # Ecm::Links::Backend::LinksController
10
+ # ]}
11
+ #
12
+ config.registered_controllers = -> {[
13
+ Ecm::Links::Backend::CategoriesController,
14
+ Ecm::Links::Backend::LinksController
15
+ ]}
16
+
17
+ # Set the services, that will be shown in the backend menu.
18
+ #
19
+ # Default: config.registered_services = -> {[]}
20
+ #
21
+ config.registered_services = -> {[]}
22
+ end
@@ -0,0 +1,4 @@
1
+
2
+ localized do
3
+ mount Ecm::Links::Backend::Engine => '/backend/ecm/links'
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,260 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ecm_links2_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_links2
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
+ description: Provides a ITSF Backend based Backend for ECM Links 2
196
+ email:
197
+ - roberto@vasquez-angel.de
198
+ executables: []
199
+ extensions: []
200
+ extra_rdoc_files: []
201
+ files:
202
+ - MIT-LICENSE
203
+ - README.rdoc
204
+ - Rakefile
205
+ - app/assets/javascripts/ecm/links/backend/application.js
206
+ - app/assets/javascripts/ecm_links_backend.js
207
+ - app/assets/stylesheets/ecm/links/backend/application.css
208
+ - app/assets/stylesheets/ecm_links_backend.css
209
+ - app/controllers/ecm/links/backend/application_controller.rb
210
+ - app/controllers/ecm/links/backend/categories_controller.rb
211
+ - app/controllers/ecm/links/backend/home_controller.rb
212
+ - app/controllers/ecm/links/backend/links_controller.rb
213
+ - app/helpers/ecm/links/backend/application_helper.rb
214
+ - app/policies/ecm/links/backend/engine_policy.rb
215
+ - app/policies/ecm/links/category_policy.rb
216
+ - app/policies/ecm/links/link_policy.rb
217
+ - app/views/ecm/links/backend/categories/_form.html.haml
218
+ - app/views/ecm/links/backend/categories/_table.html.haml
219
+ - app/views/ecm/links/backend/links/_form.html.haml
220
+ - app/views/ecm/links/backend/links/_table.html.haml
221
+ - app/views/layouts/ecm/links/backend/application.html.erb
222
+ - config/locales/de.yml
223
+ - config/locales/en.yml
224
+ - config/rbac.yml
225
+ - config/routes.rb
226
+ - lib/ecm/links/backend.rb
227
+ - lib/ecm/links/backend/configuration.rb
228
+ - lib/ecm/links/backend/engine.rb
229
+ - lib/ecm/links/backend/version.rb
230
+ - lib/ecm_links2_backend.rb
231
+ - lib/generators/ecm/links/backend/install/install_generator.rb
232
+ - lib/generators/ecm/links/backend/install/templates/ecm_links_backend.rb
233
+ - lib/generators/ecm/links/backend/install/templates/routes.source
234
+ - lib/tasks/ecm/links/backend_tasks.rake
235
+ homepage: https://github.com/robotex82/ecm_links2_backend
236
+ licenses:
237
+ - MIT
238
+ metadata: {}
239
+ post_install_message:
240
+ rdoc_options: []
241
+ require_paths:
242
+ - lib
243
+ required_ruby_version: !ruby/object:Gem::Requirement
244
+ requirements:
245
+ - - ">="
246
+ - !ruby/object:Gem::Version
247
+ version: '0'
248
+ required_rubygems_version: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - - ">="
251
+ - !ruby/object:Gem::Version
252
+ version: '0'
253
+ requirements: []
254
+ rubyforge_project:
255
+ rubygems_version: 2.4.8
256
+ signing_key:
257
+ specification_version: 4
258
+ summary: Backend Module for ECM Links 2
259
+ test_files: []
260
+ has_rdoc: