mediaelement_rails 0.4.0 → 0.5.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.
- data/README.md +1 -1
- data/app/assets/images/mediaelement_rails/bigplay.svg +1 -0
- data/app/assets/images/mediaelement_rails/controls.png +0 -0
- data/app/assets/images/mediaelement_rails/controls.svg +1 -0
- data/app/assets/javascripts/mediaelement_rails/index.js +0 -1
- data/app/assets/javascripts/mediaelement_rails/mediaelement.js +426 -164
- data/app/assets/javascripts/mediaelement_rails/mediaelementplayer.js +2004 -1890
- data/app/assets/plugins/mediaelement_rails/flashmediaelement.swf +0 -0
- data/app/assets/stylesheets/mediaelement_rails/mediaelementplayer.css.erb +77 -28
- data/lib/mediaelement_rails/version.rb +1 -1
- data/mediaelement_rails.thor +2 -2
- data/test/integration/assets_test.rb +1 -2
- metadata +44 -43
Binary file
|
@@ -4,6 +4,7 @@
|
|
4
4
|
font-family: Helvetica, Arial;
|
5
5
|
text-align: left;
|
6
6
|
vertical-align: top;
|
7
|
+
text-indent: 0;
|
7
8
|
}
|
8
9
|
|
9
10
|
.me-plugin {
|
@@ -73,9 +74,12 @@
|
|
73
74
|
width: 100px;
|
74
75
|
height: 100px;
|
75
76
|
margin: -50px 0 0 -50px;
|
76
|
-
background: url(<%= asset_path "mediaelement_rails/bigplay.
|
77
|
+
background: url(<%= asset_path "mediaelement_rails/bigplay.svg" %>) no-repeat;
|
77
78
|
}
|
78
|
-
.
|
79
|
+
.no-svg .mejs-overlay-button {
|
80
|
+
background-image: url(<%= asset_path "mediaelement_rails/bigplay.png" %>);
|
81
|
+
}
|
82
|
+
.mejs-overlay:hover .mejs-overlay-button {
|
79
83
|
background-position: 0 -100px ;
|
80
84
|
}
|
81
85
|
.mejs-overlay-loading {
|
@@ -96,7 +100,7 @@
|
|
96
100
|
background: linear-gradient(rgba(50,50,50,0.9), rgba(0,0,0,0.9));
|
97
101
|
}
|
98
102
|
.mejs-overlay-loading span {
|
99
|
-
display:block;
|
103
|
+
display: block;
|
100
104
|
width: 80px;
|
101
105
|
height: 80px;
|
102
106
|
background: transparent url(<%= asset_path "mediaelement_rails/loading.gif" %>) 50% 50% no-repeat;
|
@@ -152,7 +156,11 @@
|
|
152
156
|
height: 16px;
|
153
157
|
width: 16px;
|
154
158
|
border: 0;
|
155
|
-
background: transparent url(<%= asset_path "mediaelement_rails/controls.
|
159
|
+
background: transparent url(<%= asset_path "mediaelement_rails/controls.svg" %>) no-repeat;
|
160
|
+
}
|
161
|
+
|
162
|
+
.no-svg .mejs-controls .mejs-button button {
|
163
|
+
background-image: url(<%= asset_path "mediaelement_rails/controls.png" %>);
|
156
164
|
}
|
157
165
|
|
158
166
|
/* :focus for accessibility */
|
@@ -172,9 +180,9 @@
|
|
172
180
|
overflow: hidden;
|
173
181
|
text-align: center;
|
174
182
|
padding: auto 4px;
|
175
|
-
box-sizing: content-box;
|
176
183
|
-moz-box-sizing: content-box;
|
177
184
|
-webkit-box-sizing: content-box;
|
185
|
+
box-sizing: content-box;
|
178
186
|
}
|
179
187
|
.mejs-container .mejs-controls .mejs-time span {
|
180
188
|
font-size: 11px;
|
@@ -190,10 +198,10 @@
|
|
190
198
|
|
191
199
|
/* Start: Play/pause */
|
192
200
|
.mejs-controls .mejs-play button {
|
193
|
-
background-position:0 0;
|
201
|
+
background-position: 0 0;
|
194
202
|
}
|
195
203
|
.mejs-controls .mejs-pause button {
|
196
|
-
background-position:0 -16px;
|
204
|
+
background-position: 0 -16px;
|
197
205
|
}
|
198
206
|
/* End: Play/pause */
|
199
207
|
|
@@ -231,7 +239,7 @@
|
|
231
239
|
background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
|
232
240
|
}
|
233
241
|
.mejs-controls .mejs-time-rail .mejs-time-buffering {
|
234
|
-
width:100%;
|
242
|
+
width: 100%;
|
235
243
|
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
236
244
|
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
237
245
|
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
@@ -313,6 +321,7 @@
|
|
313
321
|
text-align: center;
|
314
322
|
left: 0;
|
315
323
|
}
|
324
|
+
|
316
325
|
.mejs-controls .mejs-time-rail .mejs-time-float-corner {
|
317
326
|
position: absolute;
|
318
327
|
display: block;
|
@@ -326,9 +335,19 @@
|
|
326
335
|
border-radius: 0;
|
327
336
|
top: 15px;
|
328
337
|
left: 13px;
|
338
|
+
}
|
329
339
|
|
340
|
+
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
|
341
|
+
width: 48px;
|
330
342
|
}
|
331
343
|
|
344
|
+
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
|
345
|
+
width: 44px;
|
346
|
+
}
|
347
|
+
|
348
|
+
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
|
349
|
+
left: 18px;
|
350
|
+
}
|
332
351
|
|
333
352
|
|
334
353
|
|
@@ -341,10 +360,10 @@
|
|
341
360
|
|
342
361
|
/* Start: Fullscreen */
|
343
362
|
.mejs-controls .mejs-fullscreen-button button {
|
344
|
-
background-position
|
363
|
+
background-position: -32px 0;
|
345
364
|
}
|
346
365
|
.mejs-controls .mejs-unfullscreen button {
|
347
|
-
background-position
|
366
|
+
background-position: -32px -16px;
|
348
367
|
}
|
349
368
|
/* End: Fullscreen */
|
350
369
|
|
@@ -354,11 +373,11 @@
|
|
354
373
|
}
|
355
374
|
|
356
375
|
.mejs-controls .mejs-mute button {
|
357
|
-
background-position
|
376
|
+
background-position: -16px -16px;
|
358
377
|
}
|
359
378
|
|
360
379
|
.mejs-controls .mejs-unmute button {
|
361
|
-
background-position
|
380
|
+
background-position: -16px 0;
|
362
381
|
}
|
363
382
|
|
364
383
|
.mejs-controls .mejs-volume-button {
|
@@ -503,7 +522,7 @@
|
|
503
522
|
}
|
504
523
|
|
505
524
|
.mejs-controls .mejs-captions-button button {
|
506
|
-
background-position
|
525
|
+
background-position: -48px 0;
|
507
526
|
}
|
508
527
|
.mejs-controls .mejs-captions-button .mejs-captions-selector {
|
509
528
|
visibility: hidden;
|
@@ -534,20 +553,20 @@
|
|
534
553
|
list-style-type: none !important;
|
535
554
|
overflow: hidden;
|
536
555
|
}
|
537
|
-
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li{
|
556
|
+
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
|
538
557
|
margin: 0 0 6px 0;
|
539
558
|
padding: 0;
|
540
559
|
list-style-type: none !important;
|
541
|
-
display:block;
|
560
|
+
display: block;
|
542
561
|
color: #fff;
|
543
562
|
overflow: hidden;
|
544
563
|
}
|
545
|
-
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input{
|
564
|
+
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
|
546
565
|
clear: both;
|
547
566
|
float: left;
|
548
567
|
margin: 3px 3px 0 5px;
|
549
568
|
}
|
550
|
-
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label{
|
569
|
+
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
|
551
570
|
width: 100px;
|
552
571
|
float: left;
|
553
572
|
padding: 4px 0 0 0;
|
@@ -610,21 +629,21 @@
|
|
610
629
|
background: linear-gradient(rgba(102,102,102,0.7), rgba(50,50,50,0.6));
|
611
630
|
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666,endColorstr=#323232);
|
612
631
|
}
|
613
|
-
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title{
|
632
|
+
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
|
614
633
|
font-size: 12px;
|
615
634
|
font-weight: bold;
|
616
635
|
display: block;
|
617
|
-
white-space:nowrap;
|
636
|
+
white-space: nowrap;
|
618
637
|
text-overflow: ellipsis;
|
619
638
|
margin: 0 0 3px 0;
|
620
639
|
line-height: 12px;
|
621
640
|
}
|
622
|
-
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan{
|
641
|
+
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
|
623
642
|
font-size: 12px;
|
624
643
|
line-height: 12px;
|
625
644
|
margin: 3px 0 4px 0;
|
626
645
|
display: block;
|
627
|
-
white-space:nowrap;
|
646
|
+
white-space: nowrap;
|
628
647
|
text-overflow: ellipsis;
|
629
648
|
}
|
630
649
|
|
@@ -688,7 +707,7 @@
|
|
688
707
|
|
689
708
|
|
690
709
|
/* Start: Loop */
|
691
|
-
.mejs-controls .mejs-loop-off button{
|
710
|
+
.mejs-controls .mejs-loop-off button {
|
692
711
|
background-position: -64px -16px;
|
693
712
|
}
|
694
713
|
.mejs-controls .mejs-loop-on button {
|
@@ -697,7 +716,7 @@
|
|
697
716
|
/* End: Loop */
|
698
717
|
|
699
718
|
/* Start: backlight */
|
700
|
-
.mejs-controls .mejs-backlight-off button{
|
719
|
+
.mejs-controls .mejs-backlight-off button {
|
701
720
|
background-position: -80px -16px;
|
702
721
|
}
|
703
722
|
.mejs-controls .mejs-backlight-on button {
|
@@ -707,7 +726,7 @@
|
|
707
726
|
|
708
727
|
|
709
728
|
/* Start: picture controls */
|
710
|
-
.mejs-controls .mejs-picturecontrols-button{
|
729
|
+
.mejs-controls .mejs-picturecontrols-button {
|
711
730
|
background-position: -96px 0;
|
712
731
|
}
|
713
732
|
/* End: picture controls */
|
@@ -777,20 +796,20 @@
|
|
777
796
|
list-style-type: none !important;
|
778
797
|
overflow: hidden;
|
779
798
|
}
|
780
|
-
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li{
|
799
|
+
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
|
781
800
|
margin: 0 0 6px 0;
|
782
801
|
padding: 0;
|
783
802
|
list-style-type: none !important;
|
784
|
-
display:block;
|
803
|
+
display: block;
|
785
804
|
color: #fff;
|
786
805
|
overflow: hidden;
|
787
806
|
}
|
788
|
-
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input{
|
807
|
+
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
|
789
808
|
clear: both;
|
790
809
|
float: left;
|
791
810
|
margin: 3px 3px 0 5px;
|
792
811
|
}
|
793
|
-
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label{
|
812
|
+
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
|
794
813
|
width: 100px;
|
795
814
|
float: left;
|
796
815
|
padding: 4px 0 0 0;
|
@@ -799,3 +818,33 @@
|
|
799
818
|
font-size: 10px;
|
800
819
|
}
|
801
820
|
/* End: SourceChooser */
|
821
|
+
|
822
|
+
|
823
|
+
/* Start: Postroll */
|
824
|
+
.mejs-postroll-layer {
|
825
|
+
position: absolute;
|
826
|
+
bottom: 0;
|
827
|
+
left: 0;
|
828
|
+
width: 100%;
|
829
|
+
height: 100%;
|
830
|
+
background: url(<%= asset_path "mediaelement_rails/background.png" %>);
|
831
|
+
background: rgba(50,50,50,0.7);
|
832
|
+
z-index: 1000;
|
833
|
+
overflow: hidden;
|
834
|
+
}
|
835
|
+
.mejs-postroll-layer-content {
|
836
|
+
width: 100%;
|
837
|
+
height: 100%;
|
838
|
+
}
|
839
|
+
.mejs-postroll-close {
|
840
|
+
position: absolute;
|
841
|
+
right: 0;
|
842
|
+
top: 0;
|
843
|
+
background: url(<%= asset_path "mediaelement_rails/background.png" %>);
|
844
|
+
background: rgba(50,50,50,0.7);
|
845
|
+
color: #fff;
|
846
|
+
padding: 4px;
|
847
|
+
z-index: 100;
|
848
|
+
cursor: pointer;
|
849
|
+
}
|
850
|
+
/* End: Postroll */
|
data/mediaelement_rails.thor
CHANGED
@@ -10,7 +10,7 @@ module MediaelementRails
|
|
10
10
|
"mediaelementplayer.js" => "javascripts",
|
11
11
|
"mediaelementplayer.css" => "stylesheets",
|
12
12
|
"mejs-skins.css" => "stylesheets",
|
13
|
-
"*.{png,gif}"
|
13
|
+
"*.{svg,png,gif}" => "images",
|
14
14
|
"*.{swf,xap}" => "plugins"
|
15
15
|
}
|
16
16
|
|
@@ -77,7 +77,7 @@ module MediaelementRails
|
|
77
77
|
|
78
78
|
# Removes the weird unicode character from the MediaElement source files.
|
79
79
|
def remove_weird_characters(content)
|
80
|
-
content.gsub //, ''
|
80
|
+
content.force_encoding('utf-8').gsub //, ''
|
81
81
|
end
|
82
82
|
end
|
83
83
|
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
require "test_helper"
|
2
2
|
|
3
3
|
class AssetsTest < ActionDispatch::IntegrationTest
|
4
|
+
|
4
5
|
test "includes full library" do
|
5
6
|
get "/assets/mediaelement-and-player.js"
|
6
7
|
assert_response :success
|
7
8
|
assert content_type("text/javascript")
|
8
|
-
assert response_includes?("var jQuery = function( selector, context ) {")
|
9
9
|
assert response_includes?("var mejs = mejs || {}")
|
10
10
|
assert response_includes?("mejs.MediaElementPlayer.prototype = {")
|
11
11
|
end
|
@@ -14,7 +14,6 @@ class AssetsTest < ActionDispatch::IntegrationTest
|
|
14
14
|
get "/assets/mediaelement-without-player.js"
|
15
15
|
assert_response :success
|
16
16
|
assert content_type("text/javascript")
|
17
|
-
assert !response_includes?("var jQuery = function( selector, context ) {")
|
18
17
|
assert response_includes?("var mejs = mejs || {}")
|
19
18
|
assert !response_includes?("mejs.MediaElementPlayer.prototype = {")
|
20
19
|
end
|
metadata
CHANGED
@@ -1,105 +1,105 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mediaelement_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
4
|
+
version: 0.5.0
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Tobias Schlottke
|
9
9
|
- Pete Browne
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2013-02-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: railties
|
17
|
-
|
17
|
+
requirement: &70273556849820 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
18
19
|
requirements:
|
19
20
|
- - ! '>='
|
20
21
|
- !ruby/object:Gem::Version
|
21
22
|
version: '3.1'
|
22
|
-
none: false
|
23
|
-
requirement: *2058
|
24
|
-
prerelease: false
|
25
23
|
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *70273556849820
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: jquery-rails
|
28
|
-
|
28
|
+
requirement: &70273556849320 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
29
30
|
requirements:
|
30
31
|
- - ! '>='
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: '1.0'
|
33
|
-
none: false
|
34
|
-
requirement: *2076
|
35
|
-
prerelease: false
|
36
34
|
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *70273556849320
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: rails
|
39
|
-
|
39
|
+
requirement: &70273556848860 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
40
41
|
requirements:
|
41
42
|
- - ! '>='
|
42
43
|
- !ruby/object:Gem::Version
|
43
44
|
version: '3.1'
|
44
|
-
none: false
|
45
|
-
requirement: *2092
|
46
|
-
prerelease: false
|
47
45
|
type: :development
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *70273556848860
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: i18n
|
50
|
-
|
50
|
+
requirement: &70273556848480 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
51
52
|
requirements:
|
52
53
|
- - ! '>='
|
53
54
|
- !ruby/object:Gem::Version
|
54
55
|
version: '0'
|
55
|
-
none: false
|
56
|
-
requirement: *2110
|
57
|
-
prerelease: false
|
58
56
|
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *70273556848480
|
59
59
|
- !ruby/object:Gem::Dependency
|
60
60
|
name: turn
|
61
|
-
|
61
|
+
requirement: &70273556848020 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
62
63
|
requirements:
|
63
64
|
- - ! '>='
|
64
65
|
- !ruby/object:Gem::Version
|
65
66
|
version: '0'
|
66
|
-
none: false
|
67
|
-
requirement: *2126
|
68
|
-
prerelease: false
|
69
67
|
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *70273556848020
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: sqlite3
|
72
|
-
|
72
|
+
requirement: &70273556847600 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
73
74
|
requirements:
|
74
75
|
- - ! '>='
|
75
76
|
- !ruby/object:Gem::Version
|
76
77
|
version: '0'
|
77
|
-
none: false
|
78
|
-
requirement: *2142
|
79
|
-
prerelease: false
|
80
78
|
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *70273556847600
|
81
81
|
- !ruby/object:Gem::Dependency
|
82
82
|
name: thor
|
83
|
-
|
83
|
+
requirement: &70273556878140 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
84
85
|
requirements:
|
85
86
|
- - ! '>='
|
86
87
|
- !ruby/object:Gem::Version
|
87
88
|
version: '0'
|
88
|
-
none: false
|
89
|
-
requirement: *2158
|
90
|
-
prerelease: false
|
91
89
|
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: *70273556878140
|
92
92
|
- !ruby/object:Gem::Dependency
|
93
93
|
name: rake
|
94
|
-
|
94
|
+
requirement: &70273556877720 !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
95
96
|
requirements:
|
96
97
|
- - ! '>='
|
97
98
|
- !ruby/object:Gem::Version
|
98
99
|
version: '0'
|
99
|
-
none: false
|
100
|
-
requirement: *2174
|
101
|
-
prerelease: false
|
102
100
|
type: :development
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: *70273556877720
|
103
103
|
description: A MediaElement gem(engine) for Rails. Makes embedding HTML5 video easy.
|
104
104
|
email:
|
105
105
|
- tobias.schlottke@gmail.com
|
@@ -115,10 +115,12 @@ files:
|
|
115
115
|
- Rakefile
|
116
116
|
- app/assets/images/mediaelement_rails/background.png
|
117
117
|
- app/assets/images/mediaelement_rails/bigplay.png
|
118
|
+
- app/assets/images/mediaelement_rails/bigplay.svg
|
118
119
|
- app/assets/images/mediaelement_rails/controls-ted.png
|
119
120
|
- app/assets/images/mediaelement_rails/controls-wmp-bg.png
|
120
121
|
- app/assets/images/mediaelement_rails/controls-wmp.png
|
121
122
|
- app/assets/images/mediaelement_rails/controls.png
|
123
|
+
- app/assets/images/mediaelement_rails/controls.svg
|
122
124
|
- app/assets/images/mediaelement_rails/loading.gif
|
123
125
|
- app/assets/javascripts/mediaelement_rails/index.js
|
124
126
|
- app/assets/javascripts/mediaelement_rails/mediaelement.js
|
@@ -174,26 +176,26 @@ files:
|
|
174
176
|
- vendor/.gitkeep
|
175
177
|
homepage: https://github.com/tobsch/mediaelement_rails
|
176
178
|
licenses: []
|
177
|
-
post_install_message:
|
179
|
+
post_install_message:
|
178
180
|
rdoc_options: []
|
179
181
|
require_paths:
|
180
182
|
- lib
|
181
183
|
required_ruby_version: !ruby/object:Gem::Requirement
|
184
|
+
none: false
|
182
185
|
requirements:
|
183
186
|
- - ! '>='
|
184
187
|
- !ruby/object:Gem::Version
|
185
188
|
version: '0'
|
186
|
-
none: false
|
187
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
190
|
+
none: false
|
188
191
|
requirements:
|
189
192
|
- - ! '>='
|
190
193
|
- !ruby/object:Gem::Version
|
191
194
|
version: '0'
|
192
|
-
none: false
|
193
195
|
requirements: []
|
194
|
-
rubyforge_project:
|
195
|
-
rubygems_version: 1.8.
|
196
|
-
signing_key:
|
196
|
+
rubyforge_project:
|
197
|
+
rubygems_version: 1.8.17
|
198
|
+
signing_key:
|
197
199
|
specification_version: 3
|
198
200
|
summary: MediaElement.js for Rails
|
199
201
|
test_files:
|
@@ -233,4 +235,3 @@ test_files:
|
|
233
235
|
- test/dummy/script/rails
|
234
236
|
- test/integration/assets_test.rb
|
235
237
|
- test/test_helper.rb
|
236
|
-
...
|