ecm_youtube_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 +19 -0
  5. data/app/assets/javascripts/ecm/youtube/backend/application.js +13 -0
  6. data/app/assets/javascripts/ecm_youtube_backend.js +1 -0
  7. data/app/assets/stylesheets/ecm/youtube/backend/application.css +14 -0
  8. data/app/controllers/ecm/youtube/backend/application_controller.rb +8 -0
  9. data/app/controllers/ecm/youtube/backend/categories_controller.rb +34 -0
  10. data/app/controllers/ecm/youtube/backend/home_controller.rb +6 -0
  11. data/app/controllers/ecm/youtube/backend/videos_controller.rb +37 -0
  12. data/app/helpers/ecm/youtube/backend/application_helper.rb +8 -0
  13. data/app/policies/ecm/youtube/backend/engine_policy.rb +4 -0
  14. data/app/policies/ecm/youtube/category_policy.rb +4 -0
  15. data/app/policies/ecm/youtube/video_policy.rb +4 -0
  16. data/app/views/ecm/youtube/backend/categories/_show_extras.html.haml +12 -0
  17. data/app/views/ecm/youtube/backend/categories/_table.html.haml +3 -0
  18. data/app/views/ecm/youtube/backend/videos/_form.html.haml +3 -0
  19. data/app/views/ecm/youtube/backend/videos/_show.html.haml +9 -0
  20. data/app/views/ecm/youtube/backend/videos/_table.html.haml +9 -0
  21. data/app/views/layouts/ecm/youtube/backend/application.html.erb +14 -0
  22. data/config/initializers/assets.rb +1 -0
  23. data/config/locales/de.yml +6 -0
  24. data/config/locales/en.yml +6 -0
  25. data/config/rbac.yml +40 -0
  26. data/config/routes.rb +11 -0
  27. data/lib/ecm/youtube/backend.rb +9 -0
  28. data/lib/ecm/youtube/backend/configuration.rb +22 -0
  29. data/lib/ecm/youtube/backend/engine.rb +9 -0
  30. data/lib/ecm/youtube/backend/version.rb +7 -0
  31. data/lib/ecm_youtube_backend.rb +5 -0
  32. data/lib/generators/ecm/youtube/backend/install/install_generator.rb +29 -0
  33. data/lib/generators/ecm/youtube/backend/install/templates/initializer.rb +22 -0
  34. data/lib/tasks/ecm/youtube/backend_tasks.rake +4 -0
  35. metadata +274 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6d6bb0d66db6213eca5b4684246466326988aca4
4
+ data.tar.gz: 5ef0caa91a6a17a881b5c011b4253bb38931ac63
5
+ SHA512:
6
+ metadata.gz: 8774bcb8e3b928dfd726d6c7d00bb74ff6b42c8bf43086ae0304141631f6507bc5b20dd3d89950e02d8b57a6508ffcca10aec66421f3d4a66a266e900e30b026
7
+ data.tar.gz: dd6915bf8545ea155f85ffffdc6493705407a26bd83c82ce22edb606d2209c94bacbf80f20b3805b261329ececf69e0da81113b7dd51ecaee0dec0280a653138
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::Youtube::Backend
2
+
3
+
4
+ = Prerequisites
5
+
6
+ * itsf_backend
7
+ * ecm_youtube
8
+
9
+
10
+ = Installation
11
+
12
+ Add it to your gemfile:
13
+
14
+ # Gemfile
15
+ gem 'ecm_youtube_backend'
16
+
17
+ Bundle:
18
+
19
+ > bundle install
20
+
21
+ Generate the initializer:
22
+
23
+ > rails g ecm:youtube:backend:install
24
+
25
+ Add it to the backend:
26
+
27
+ # config/initializers/xxx_itsf_backend.rb
28
+ Itsf::Backend.configure do |config|
29
+ config.backend_engines = [
30
+ Ecm::Youtube::Backend::Engine
31
+ ]
32
+ end
33
+
34
+
35
+ = Running Specs
36
+
37
+ ./run_specs.sh
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::Youtube::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/youtube/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 .
13
+ *= require_self
14
+ */
@@ -0,0 +1,8 @@
1
+ module Ecm
2
+ module Youtube
3
+ module Backend
4
+ class ApplicationController < ActionController::Base
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,34 @@
1
+ class Ecm::Youtube::Backend::CategoriesController < Itsf::Backend::Resource::BaseController
2
+ def self.resource_class
3
+ # Set the resource class here.
4
+ #
5
+ # Default: Ecm::Youtube::Category
6
+ #
7
+ Ecm::Youtube::Category
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(:category)
28
+ # .permit(:title, :body)
29
+ #
30
+ params
31
+ .require(:category)
32
+ .permit(:identifier)
33
+ end
34
+ end
@@ -0,0 +1,6 @@
1
+ module Ecm::Youtube::Backend
2
+ class HomeController < Itsf::Backend::HomeController
3
+ def index
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,37 @@
1
+ class Ecm::Youtube::Backend::VideosController < Itsf::Backend::Resource::BaseController
2
+ include Controller::ActsAsPublishedConcern
3
+ include Controller::ActsAsListConcern
4
+
5
+ def self.resource_class
6
+ # Set the resource class here.
7
+ #
8
+ # Default: Ecm::Youtube::Video
9
+ #
10
+ Ecm::Youtube::Video
11
+ end
12
+
13
+ private
14
+
15
+ def collection_scope
16
+ # Customize the collection scope here for collection retrival (i.e. for the
17
+ # index action).
18
+ #
19
+ # Example: current_user.posts.includes(:comments)
20
+ #
21
+ # Default: resource_class
22
+ #
23
+ resource_class
24
+ end
25
+
26
+ def permitted_params
27
+ # Set the allowed params, for your create and update methods.
28
+ #
29
+ # Example: params
30
+ # .require(:video)
31
+ # .permit(:title, :body)
32
+ #
33
+ params
34
+ .require(:video)
35
+ .permit(:category_id, :identifier, :published)
36
+ end
37
+ end
@@ -0,0 +1,8 @@
1
+ module Ecm
2
+ module Youtube
3
+ module Backend
4
+ module ApplicationHelper
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Youtube::Backend
2
+ class EnginePolicy < Itsf::Backend::EnginePolicy
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Youtube
2
+ class CategoryPolicy < Itsf::Backend::BasePolicy
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Ecm::Youtube
2
+ class VideoPolicy < Itsf::Backend::BasePolicy
3
+ end
4
+ end
@@ -0,0 +1,12 @@
1
+ .panel.panel-default
2
+ .panel-heading
3
+ .panel-title= Ecm::Youtube::Video.model_name.human(count: :other)
4
+ %table.table.table-striped.table-condensed.table-hover
5
+ = render_collection(@resource.videos, Ecm::Youtube::Video, as: :bootstrap_table) do |table, record|
6
+ = table.column :preview, as: :youtube_video, width: 320, height: 240, aspect_ratio: '4by3'
7
+ = table.column :title, class: 'truncate-chars truncate-chars-30'
8
+ = table.column :description, class: 'truncate-chars truncate-chars-30'
9
+ = table.column :duration, as: :duration
10
+ = table.column :identifier
11
+ = table.timestamps
12
+ .panel-footer
@@ -0,0 +1,3 @@
1
+ = table.column :identifier
2
+ = table.column :translated_identifier
3
+ = table.timestamps
@@ -0,0 +1,3 @@
1
+ = form.association :category, label_method: :translated_identifier
2
+ = form.input :identifier
3
+ = form.input :published, as: :boolean
@@ -0,0 +1,9 @@
1
+ = table.row :category, as: :association, label_method: :identifier
2
+ = table.row :title
3
+ = table.row :description
4
+ = table.row :duration, as: :duration
5
+ = table.row :preview, as: :youtube_video, width: 320, height: 240, aspect_ratio: '4by3'
6
+ = table.row :identifier
7
+ = table.row :published
8
+ = table.row :created_at
9
+ = table.row :updated_at
@@ -0,0 +1,9 @@
1
+ = table.association :category, label_method: :translated_identifier
2
+ = table.column :preview, as: :youtube_video, width: 320, height: 240, aspect_ratio: '4by3'
3
+ = table.column :title, class: 'truncate-chars truncate-chars-30'
4
+ = table.column :description, class: 'truncate-chars truncate-chars-30'
5
+ = table.column :duration, as: :duration
6
+ = table.column :identifier
7
+ = table.timestamps
8
+ = table.acts_as_list_actions scope: 'category_id'
9
+ = table.acts_as_published_actions
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Backend</title>
5
+ <%= stylesheet_link_tag "ecm/youtube/backend/application", media: "all" %>
6
+ <%= javascript_include_tag "ecm/youtube/backend/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1 @@
1
+ Rails.application.config.assets.precompile += %w( ecm_youtube_backend.js )
@@ -0,0 +1,6 @@
1
+ de:
2
+ classes:
3
+ ecm/youtube/backend/engine: 'Youtube'
4
+ routes:
5
+ mount:
6
+ ecm_youtube_backend: '/backend/youtube'
@@ -0,0 +1,6 @@
1
+ en:
2
+ classes:
3
+ ecm/youtube/backend/engine: 'Youtube'
4
+ routes:
5
+ mount:
6
+ ecm_youtube_backend: '/backend/youtube'
data/config/rbac.yml ADDED
@@ -0,0 +1,40 @@
1
+ defaults:
2
+ permissions:
3
+ - ecm/youtube/backend/engine
4
+ - ecm/youtube/category/index
5
+ - ecm/youtube/category/show
6
+ - ecm/youtube/category/new
7
+ - ecm/youtube/category/create
8
+ - ecm/youtube/category/edit
9
+ - ecm/youtube/category/update
10
+ - ecm/youtube/category/destroy
11
+ - ecm/youtube/video/index
12
+ - ecm/youtube/video/show
13
+ - ecm/youtube/video/new
14
+ - ecm/youtube/video/create
15
+ - ecm/youtube/video/edit
16
+ - ecm/youtube/video/update
17
+ - ecm/youtube/video/destroy
18
+ roles:
19
+ ecm/youtube/administrator:
20
+ - ecm/youtube/backend/engine
21
+ - ecm/youtube/category/index
22
+ - ecm/youtube/category/show
23
+ - ecm/youtube/category/new
24
+ - ecm/youtube/category/create
25
+ - ecm/youtube/category/edit
26
+ - ecm/youtube/category/update
27
+ - ecm/youtube/category/destroy
28
+ - ecm/youtube/video/index
29
+ - ecm/youtube/video/show
30
+ - ecm/youtube/video/new
31
+ - ecm/youtube/video/create
32
+ - ecm/youtube/video/edit
33
+ - ecm/youtube/video/update
34
+ - ecm/youtube/video/destroy
35
+ ecm/youtube/reviewer:
36
+ - ecm/youtube/backend/engine
37
+ - ecm/youtube/category/index
38
+ - ecm/youtube/category/show
39
+ - ecm/youtube/video/index
40
+ - ecm/youtube/video/show
data/config/routes.rb ADDED
@@ -0,0 +1,11 @@
1
+ Ecm::Youtube::Backend::Engine.routes.draw do
2
+ resources :categories
3
+ resources :videos do
4
+ member do
5
+ post :reposition
6
+ post :toggle_published
7
+ end
8
+ end
9
+
10
+ root to: 'home#index'
11
+ end
@@ -0,0 +1,9 @@
1
+ require 'ecm/youtube/backend/configuration'
2
+
3
+ module Ecm
4
+ module Youtube
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 Youtube
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,9 @@
1
+ module Ecm
2
+ module Youtube
3
+ module Backend
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Ecm::Youtube::Backend
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ module Ecm
2
+ module Youtube
3
+ module Backend
4
+ VERSION = '1.0.0'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ require 'itsf_backend'
2
+ require 'ecm_youtube'
3
+
4
+ require 'ecm/youtube/backend'
5
+ require 'ecm/youtube/backend/engine'
@@ -0,0 +1,29 @@
1
+ module Ecm
2
+ module Youtube
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 "initializer.rb", "config/initializers/ecm_youtube_backend.rb"
12
+ end
13
+
14
+ def add_to_itsf_backend
15
+ insert_into_itsf_backend_config(Ecm::Youtube::Backend::Engine)
16
+ end
17
+
18
+ private
19
+
20
+ def insert_into_itsf_backend_config(engine_name)
21
+ inject_into_file 'config/initializers/001_itsf_backend.rb', after: "config.backend_engines = %w(\n" do
22
+ " #{engine_name}\n"
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,22 @@
1
+ Ecm::Youtube::Backend.configure do |config|
2
+ # Set the resources, that will be shown in the backend menu.
3
+ #
4
+ # Default: config.registered_controllers = -> {[
5
+ # Ecm::Youtube::Backend::CategoriesController,
6
+ # Ecm::Youtube::Backend::VideosController
7
+ # ]}
8
+ #
9
+ config.registered_controllers = -> {[
10
+ Ecm::Youtube::Backend::CategoriesController,
11
+ Ecm::Youtube::Backend::VideosController
12
+ ]}
13
+
14
+
15
+ # Set the services, that will be shown in the backend menu.
16
+ #
17
+ # Default: config.registered_services = -> {[
18
+ # ]}
19
+ #
20
+ config.registered_services = -> {[
21
+ ]}
22
+ 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,274 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ecm_youtube_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_youtube
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: 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: rubocop
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: rails-dummy
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
+ - !ruby/object:Gem::Dependency
98
+ name: therubyracer
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
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: guard-bundler
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: guard-rails
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: guard-rspec
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: rspec-rails
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: capybara
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: factory_girl_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: shoulda-matchers
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: Backend for ECM Youtube Module
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/youtube/backend/application.js
220
+ - app/assets/javascripts/ecm_youtube_backend.js
221
+ - app/assets/stylesheets/ecm/youtube/backend/application.css
222
+ - app/controllers/ecm/youtube/backend/application_controller.rb
223
+ - app/controllers/ecm/youtube/backend/categories_controller.rb
224
+ - app/controllers/ecm/youtube/backend/home_controller.rb
225
+ - app/controllers/ecm/youtube/backend/videos_controller.rb
226
+ - app/helpers/ecm/youtube/backend/application_helper.rb
227
+ - app/policies/ecm/youtube/backend/engine_policy.rb
228
+ - app/policies/ecm/youtube/category_policy.rb
229
+ - app/policies/ecm/youtube/video_policy.rb
230
+ - app/views/ecm/youtube/backend/categories/_show_extras.html.haml
231
+ - app/views/ecm/youtube/backend/categories/_table.html.haml
232
+ - app/views/ecm/youtube/backend/videos/_form.html.haml
233
+ - app/views/ecm/youtube/backend/videos/_show.html.haml
234
+ - app/views/ecm/youtube/backend/videos/_table.html.haml
235
+ - app/views/layouts/ecm/youtube/backend/application.html.erb
236
+ - config/initializers/assets.rb
237
+ - config/locales/de.yml
238
+ - config/locales/en.yml
239
+ - config/rbac.yml
240
+ - config/routes.rb
241
+ - lib/ecm/youtube/backend.rb
242
+ - lib/ecm/youtube/backend/configuration.rb
243
+ - lib/ecm/youtube/backend/engine.rb
244
+ - lib/ecm/youtube/backend/version.rb
245
+ - lib/ecm_youtube_backend.rb
246
+ - lib/generators/ecm/youtube/backend/install/install_generator.rb
247
+ - lib/generators/ecm/youtube/backend/install/templates/initializer.rb
248
+ - lib/tasks/ecm/youtube/backend_tasks.rake
249
+ homepage: https://github.com/robotex82/ecm_youtube_backend
250
+ licenses:
251
+ - MIT
252
+ metadata: {}
253
+ post_install_message:
254
+ rdoc_options: []
255
+ require_paths:
256
+ - lib
257
+ required_ruby_version: !ruby/object:Gem::Requirement
258
+ requirements:
259
+ - - ">="
260
+ - !ruby/object:Gem::Version
261
+ version: '0'
262
+ required_rubygems_version: !ruby/object:Gem::Requirement
263
+ requirements:
264
+ - - ">="
265
+ - !ruby/object:Gem::Version
266
+ version: '0'
267
+ requirements: []
268
+ rubyforge_project:
269
+ rubygems_version: 2.4.8
270
+ signing_key:
271
+ specification_version: 4
272
+ summary: Backend for ECM Youtube Module
273
+ test_files: []
274
+ has_rdoc: