ecm_videos 1.0.2 → 1.0.3
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.
- checksums.yaml +4 -4
- data/README.rdoc +14 -8
- data/app/views/ecm/videos/categories/index.haml +2 -1
- data/app/views/ecm/videos/categories/show.haml +2 -1
- data/app/views/ecm/videos/videos/index.haml +2 -1
- data/app/views/ecm/videos/videos/show.haml +2 -1
- data/config/locales/de.yml +0 -2
- data/lib/ecm/videos/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3c76fb842c4bbe335f21dff94dc9ccf7e352eab
|
4
|
+
data.tar.gz: 3482cde1909eed91b6e3cb0fdbbaf2947e649282
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab20e2bbf9b9d1c244a23d27743350f1ec090327db4aa2850b724a44b6793626a7d67ea859afc79815a650730f027853b8a359bf6d9ed679d79dbca8516c29a2
|
7
|
+
data.tar.gz: 16ad7df8ef16eccfca61d1f5b17bcdaf493c0d1a404e6d9666277fe4cdce9724055e7858dd032abda11e568bcb49f3f44d9442d1bea9137d7c7e9e18640c1658
|
data/README.rdoc
CHANGED
@@ -2,18 +2,24 @@
|
|
2
2
|
|
3
3
|
This project rocks and uses MIT-LICENSE.
|
4
4
|
|
5
|
+
= When trying to upload new videos on heroku, I get the error message "errors while processing Ecm::Videos::Video ID <x>: Video Paperclip::Errors::NotIdentifiedByImageMagickError". What can I do?
|
6
|
+
|
7
|
+
You have to add the ffmpeg buildpack to heroku:
|
8
|
+
|
9
|
+
heroku buildpacks:add https://github.com/HYPERHYPER/heroku-buildpack-ffmpeg.git --remote production
|
10
|
+
|
5
11
|
= When trying to upload new videos on ubuntu, I get the error message "errors while processing Ecm::Videos::Video ID <x>: Video Paperclip::Errors::NotIdentifiedByImageMagickError". What can I do?
|
6
12
|
|
7
13
|
Your system is missing ffmpeg. Install it:
|
8
14
|
|
9
|
-
sudo apt-get --purge remove ffmpeg
|
10
|
-
sudo apt-get --purge autoremove
|
15
|
+
sudo apt-get --purge remove ffmpeg
|
16
|
+
sudo apt-get --purge autoremove
|
11
17
|
|
12
|
-
sudo apt-get install ppa-purge
|
13
|
-
sudo ppa-purge ppa:jon-severinsson/ffmpeg
|
18
|
+
sudo apt-get install ppa-purge
|
19
|
+
sudo ppa-purge ppa:jon-severinsson/ffmpeg
|
14
20
|
|
15
|
-
sudo add-apt-repository ppa:mc3man/trusty-media
|
16
|
-
sudo apt-get update
|
17
|
-
# sudo apt-get dist-upgrade
|
21
|
+
sudo add-apt-repository ppa:mc3man/trusty-media
|
22
|
+
sudo apt-get update
|
23
|
+
# sudo apt-get dist-upgrade
|
18
24
|
|
19
|
-
sudo apt-get install ffmpeg
|
25
|
+
sudo apt-get install ffmpeg
|
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
- content_for(:title) { t('.title', inflections) }
|
2
|
+
%h1= yield(:title)
|
2
3
|
|
3
4
|
= render_collection(@collection, Ecm::Videos::Category, as: :bootstrap_media_object) do |list|
|
4
5
|
= list.media_object(title_method: :name, body: list.resource.description(:html), image_url: list.resource.published_preview_image_url(:default_thumb), link_to_more_url: url_for(list.resource), media_body_content_html_options: { class: 'media-body-content.bottom-margin-1 truncate lines-3' })
|
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
- content_for(:title) { t('.title', inflections) }
|
2
|
+
%h1= yield(:title)
|
2
3
|
|
3
4
|
= render_collection(@collection, Ecm::Videos::Video, as: :bootstrap_media_object) do |list|
|
4
5
|
= list.media_object(title_method: :name, body: list.resource.description(:html), image_url: list.resource.clip.url(:default_thumb), link_to_more_url: url_for(list.resource), media_body_content_html_options: { class: 'media-body-content.bottom-margin-1 truncate lines-3' })
|
data/config/locales/de.yml
CHANGED
data/lib/ecm/videos/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecm_videos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Vasquez Angel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|