ecm_videos 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e57d882d14d8e480bb3a1f4bed5feb193cba900f
|
4
|
+
data.tar.gz: 713b01bb4f2dd85d984deb550034b0ee8a8cf3c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48c18c7213cbbd77368f3446fccc0a7552cfb59e4ac3d755e5b7390a5c7757cc91da5a6fe3052da717c1d6a721f46a76e0cb4d1800eb6ce3701d09b1ceafa9be
|
7
|
+
data.tar.gz: 14ae831b473e5c1dc8a41b9117ef16674a5e98c817b18150576236d20bf10ed3adec11f6f1d84cded34b6e7f11e217b386e14c316c98f5f19f8c6ae93f243514
|
data/config/locales/de.yml
CHANGED
@@ -12,15 +12,21 @@ de:
|
|
12
12
|
other: Videos
|
13
13
|
attributes:
|
14
14
|
ecm/videos/category:
|
15
|
+
id: ID
|
15
16
|
description: Beschreibung
|
16
17
|
locale: Sprache
|
17
18
|
markup_language: Markup Sprache
|
18
19
|
name: Name
|
20
|
+
position: Position
|
19
21
|
preview_image: Vorschau
|
20
22
|
published: Veröffentlicht
|
21
23
|
published_at: Veröffentlicht am
|
24
|
+
slug: Freundliche ID
|
22
25
|
videos_count: Videos
|
26
|
+
created_at: Erstellt am
|
27
|
+
updated_at: Aktualisiert am
|
23
28
|
ecm/videos/video:
|
29
|
+
id: ID
|
24
30
|
category: Kategorie
|
25
31
|
category_id: Kategorie
|
26
32
|
clip: Video
|
@@ -31,9 +37,13 @@ de:
|
|
31
37
|
description: Beschreibung
|
32
38
|
markup_language: Markup Sprache
|
33
39
|
name: Name
|
40
|
+
position: Position
|
34
41
|
preview_image: Vorschau
|
35
42
|
published: Veröffentlicht
|
36
43
|
published_at: Veröffentlicht am
|
44
|
+
slug: Freundliche ID
|
45
|
+
created_at: Erstellt am
|
46
|
+
updated_at: Aktualisiert am
|
37
47
|
ecm:
|
38
48
|
videos:
|
39
49
|
categories:
|
@@ -0,0 +1,64 @@
|
|
1
|
+
en:
|
2
|
+
attributes:
|
3
|
+
created_at: Created at
|
4
|
+
updated_at: Updated at
|
5
|
+
activerecord:
|
6
|
+
models:
|
7
|
+
ecm/videos/category:
|
8
|
+
one: Category
|
9
|
+
other: Categories
|
10
|
+
ecm/videos/video:
|
11
|
+
one: Video
|
12
|
+
other: Videos
|
13
|
+
attributes:
|
14
|
+
ecm/videos/category:
|
15
|
+
id: ID
|
16
|
+
description: Description
|
17
|
+
locale: Locale
|
18
|
+
markup_language: Markup language
|
19
|
+
name: Name
|
20
|
+
position: Position
|
21
|
+
preview_image: Preview image
|
22
|
+
published: Published
|
23
|
+
published_at: Published at
|
24
|
+
slug: Slug
|
25
|
+
videos_count: Videos
|
26
|
+
created_at: Created at
|
27
|
+
updated_at: Updated at
|
28
|
+
ecm/videos/video:
|
29
|
+
id: ID
|
30
|
+
category: Category
|
31
|
+
category_id: Category
|
32
|
+
clip: Clip
|
33
|
+
clip_content_type: Clip content type
|
34
|
+
clip_file_name: Clip file name
|
35
|
+
clip_file_size: Clip file size
|
36
|
+
clip_updated_at: Clip updated at
|
37
|
+
description: Description
|
38
|
+
markup_language: Markup language
|
39
|
+
name: Name
|
40
|
+
position: Position
|
41
|
+
preview_image: Preview image
|
42
|
+
published: Published
|
43
|
+
published_at: Published at
|
44
|
+
slug: Slug
|
45
|
+
created_at: Created at
|
46
|
+
updated_at: Updated at
|
47
|
+
ecm:
|
48
|
+
videos:
|
49
|
+
categories:
|
50
|
+
index:
|
51
|
+
back: Back
|
52
|
+
title: "%{collection_name}"
|
53
|
+
show:
|
54
|
+
back: Back
|
55
|
+
videos:
|
56
|
+
index:
|
57
|
+
back: Back
|
58
|
+
title: "%{collection_name}"
|
59
|
+
show:
|
60
|
+
back: Back
|
61
|
+
routes:
|
62
|
+
ecm_videos_engine: videos
|
63
|
+
categories: categories
|
64
|
+
videos: videos
|
data/lib/ecm/videos/version.rb
CHANGED
@@ -0,0 +1,7 @@
|
|
1
|
+
FactoryGirl.define do
|
2
|
+
factory :ecm_videos_video, class: Ecm::Videos::Video do
|
3
|
+
association(:category, factory: :ecm_videos_category)
|
4
|
+
sequence(:name) { |i| "Video #{i}" }
|
5
|
+
clip { File.open(Ecm::Videos::Engine.root.join(*%w(spec files ecm_videos videos clip.mp4))) }
|
6
|
+
end
|
7
|
+
end
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecm_videos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Vasquez Angel
|
@@ -160,6 +160,7 @@ files:
|
|
160
160
|
- app/views/ecm/videos/videos/show.haml
|
161
161
|
- app/views/layouts/ecm/videos/application.html.erb
|
162
162
|
- config/locales/de.yml
|
163
|
+
- config/locales/en.yml
|
163
164
|
- config/routes.rb
|
164
165
|
- db/migrate/20160214022529_create_ecm_videos_categories.rb
|
165
166
|
- db/migrate/20160214022929_create_ecm_videos_videos.rb
|
@@ -172,6 +173,9 @@ files:
|
|
172
173
|
- lib/generators/ecm/videos/install/templates/initializer.rb
|
173
174
|
- lib/generators/ecm/videos/install/templates/routes.source
|
174
175
|
- lib/tasks/ecm/videos_tasks.rake
|
176
|
+
- spec/factories/ecm_videos_categories.rb
|
177
|
+
- spec/factories/ecm_videos_videos.rb
|
178
|
+
- spec/files/ecm_videos/videos/clip.mp4
|
175
179
|
homepage: https://github.com/robotex82/ecm_videos
|
176
180
|
licenses:
|
177
181
|
- MIT
|