ecm_videos 1.0.4 → 2.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a54515b0526e730e20ebeada62098d2b013df5f9
|
4
|
+
data.tar.gz: 88915eb132b34a1293821f199c4cf56fd9e67474
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c2691a5838e408ed758d0f0ea537b0b538de5148331526047f251decc38b444471fec05673a329e5d69a622fbf3b4e9cb891de00fb6cd7389aff795c08a32d6
|
7
|
+
data.tar.gz: 03d67ffddf6087568d207c43efe54468ec1869254f5f40608781adf98f3fd422cbe4aaca9f0880fb4bd7d733c18836fee01610a58463fe3ac6e3f8be1c581e6f
|
data/README.rdoc
CHANGED
@@ -12,8 +12,8 @@ You have to add the ffmpeg buildpack to heroku:
|
|
12
12
|
|
13
13
|
Your system is missing ffmpeg. Install it:
|
14
14
|
|
15
|
-
sudo apt-get --purge remove ffmpeg
|
16
|
-
sudo apt-get --purge autoremove
|
15
|
+
sudo apt-get -y --purge remove ffmpeg
|
16
|
+
sudo apt-get -y --purge autoremove
|
17
17
|
|
18
18
|
sudo apt-get install ppa-purge
|
19
19
|
sudo ppa-purge ppa:jon-severinsson/ffmpeg
|
@@ -22,4 +22,10 @@ Your system is missing ffmpeg. Install it:
|
|
22
22
|
sudo apt-get update
|
23
23
|
# sudo apt-get dist-upgrade
|
24
24
|
|
25
|
-
sudo apt-get install ffmpeg
|
25
|
+
sudo apt-get -y install ffmpeg
|
26
|
+
|
27
|
+
= When trying to upload new videos on ubuntu, I get the error message "Av::UnableToDetect: Unable to detect any supported library". What can I do?
|
28
|
+
|
29
|
+
Your system is missing libav-tools. Install it:
|
30
|
+
|
31
|
+
sudo apt-get install libav-tools
|
data/config/locales/de.yml
CHANGED
data/config/routes.rb
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
Ecm::Videos::Engine.routes.draw do
|
2
|
-
|
3
|
-
|
2
|
+
localized do
|
3
|
+
scope :ecm_videos_engine do
|
4
|
+
resources :categories, only: [:index, :show]
|
5
|
+
resources :videos, only: [:index, :show]
|
4
6
|
|
5
|
-
|
7
|
+
root to: 'categories#index'
|
8
|
+
end
|
9
|
+
end
|
6
10
|
end
|
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:
|
4
|
+
version: 2.0.0
|
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:
|
11
|
+
date: 2018-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -192,9 +192,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
192
|
version: '0'
|
193
193
|
requirements: []
|
194
194
|
rubyforge_project:
|
195
|
-
rubygems_version: 2.
|
195
|
+
rubygems_version: 2.6.11
|
196
196
|
signing_key:
|
197
197
|
specification_version: 4
|
198
198
|
summary: Ecm::Videos.
|
199
199
|
test_files: []
|
200
|
-
has_rdoc:
|