video-js-rails 3.2.3.1 → 4.3.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 +15 -0
- data/README.md +8 -0
- data/app/assets/javascripts/video-js.js +129 -4569
- data/lib/video-js-rails/version.rb +2 -6
- data/lib/video-js-rails.rb +2 -6
- metadata +12 -16
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
ZGM3OGYzOTIyZGQ1MTlhNGMzYWU1Y2I3MjZmN2RjYTFkMjk0MjM4Mw==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
MzdmYjAzZTY0YmIxMzI3MzE0OWIyOTk2NmY5YzM0YzUxMmYwZDk0OA==
|
|
7
|
+
SHA512:
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
NjcxOGFkZjMxNDQzMDkxM2E2YjQxZmRiMTMwODk1OTRhNTY0M2ExZWJiODRl
|
|
10
|
+
M2M2NmJiM2MwNmNkNGU2YTg3Y2ZmN2IwNmU4Zjc3NTRiZmQ2YmI2YWIzMmJi
|
|
11
|
+
ZDUyY2RhYWY5OTViZTg5MmI4NDU0ZTQxNzNiYWU3NGVlZWMzZDY=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
M2QxZGUzZmI1NTY2MTI0ZjI3YzM5ZjMyZmI2ZGYzOTdhMjQzOGMxMjY1YTU0
|
|
14
|
+
MDAxMGVjZTk1NzI2ZDdmODI1ZGQzZTMwZjE2NmY4ODZlZTE5ODU3M2QxNTE2
|
|
15
|
+
MzQzMDhkODA0NWE4YjJmMGVmMjRjZjY3MDE2ZDIxZmNmNmJkMDI=
|
data/README.md
CHANGED
|
@@ -17,6 +17,14 @@ Or install it yourself as:
|
|
|
17
17
|
|
|
18
18
|
$ gem install video-js-rails
|
|
19
19
|
|
|
20
|
+
Add the resources to your application.js file
|
|
21
|
+
|
|
22
|
+
//= require video-js
|
|
23
|
+
|
|
24
|
+
Add the resources to your application.css file
|
|
25
|
+
|
|
26
|
+
*= require video-js
|
|
27
|
+
|
|
20
28
|
## Usage
|
|
21
29
|
|
|
22
30
|
Add something like this to your view:
|