mediaelement_rails 0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +97 -0
- data/MIT-LICENSE +20 -0
- data/README.md +29 -0
- data/Rakefile +39 -0
- data/app/assets/flash/mediaelement_rails/flashmediaelement.swf +0 -0
- data/app/assets/images/mediaelement_rails/background.png +0 -0
- data/app/assets/images/mediaelement_rails/bigplay.png +0 -0
- data/app/assets/images/mediaelement_rails/controls-ted.png +0 -0
- data/app/assets/images/mediaelement_rails/controls-wmp-bg.png +0 -0
- data/app/assets/images/mediaelement_rails/controls-wmp.png +0 -0
- data/app/assets/images/mediaelement_rails/controls.png +0 -0
- data/app/assets/images/mediaelement_rails/loading.gif +0 -0
- data/app/assets/javascripts/mediaelement_rails/index.js +3 -0
- data/app/assets/javascripts/mediaelement_rails/mediaelement.js +943 -0
- data/app/assets/javascripts/mediaelement_rails/mediaelementplayer.js +1703 -0
- data/app/assets/javascripts/mediaelement_rails/rails.js.erb +5 -0
- data/app/assets/silverlight/mediaelement_rails/silverlightmediaelement.xap +0 -0
- data/app/assets/stylesheets/mediaelement_rails/index.css +1 -0
- data/app/assets/stylesheets/mediaelement_rails/mediaelementplayer.css.erb +571 -0
- data/app/assets/stylesheets/mediaelement_rails/mejs-skins.css.erb +283 -0
- data/app/controllers/mediaelement_rails/application_controller.rb +4 -0
- data/app/helpers/mediaelement_rails/application_helper.rb +4 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/app/views/layouts/mediaelement_rails/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/lib/generators/mediaelement_update/USAGE +7 -0
- data/lib/generators/mediaelement_update/mediaelement_update_generator.rb +46 -0
- data/lib/mediaelement_rails/engine.rb +5 -0
- data/lib/mediaelement_rails/version.rb +3 -0
- data/lib/mediaelement_rails.rb +4 -0
- data/lib/tasks/mediaelement_rails_tasks.rake +4 -0
- data/mediaelement_rails.gemspec +20 -0
- data/script/rails +6 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +9 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.gitkeep +0 -0
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +45 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +24 -0
- data/test/dummy/config/environments/production.rb +51 -0
- data/test/dummy/config/environments/test.rb +34 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/lib/assets/.gitkeep +0 -0
- data/test/dummy/log/.gitkeep +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/mediaelement_rails_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +170 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
mediaelement_rails (0.2)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actionmailer (3.1.0.rc5)
|
10
|
+
actionpack (= 3.1.0.rc5)
|
11
|
+
mail (~> 2.3.0)
|
12
|
+
actionpack (3.1.0.rc5)
|
13
|
+
activemodel (= 3.1.0.rc5)
|
14
|
+
activesupport (= 3.1.0.rc5)
|
15
|
+
builder (~> 3.0.0)
|
16
|
+
erubis (~> 2.7.0)
|
17
|
+
i18n (~> 0.6)
|
18
|
+
rack (~> 1.3.1)
|
19
|
+
rack-cache (~> 1.0.2)
|
20
|
+
rack-mount (~> 0.8.1)
|
21
|
+
rack-test (~> 0.6.0)
|
22
|
+
sprockets (~> 2.0.0.beta.12)
|
23
|
+
activemodel (3.1.0.rc5)
|
24
|
+
activesupport (= 3.1.0.rc5)
|
25
|
+
bcrypt-ruby (~> 2.1.4)
|
26
|
+
builder (~> 3.0.0)
|
27
|
+
i18n (~> 0.6)
|
28
|
+
activerecord (3.1.0.rc5)
|
29
|
+
activemodel (= 3.1.0.rc5)
|
30
|
+
activesupport (= 3.1.0.rc5)
|
31
|
+
arel (~> 2.1.4)
|
32
|
+
tzinfo (~> 0.3.29)
|
33
|
+
activeresource (3.1.0.rc5)
|
34
|
+
activemodel (= 3.1.0.rc5)
|
35
|
+
activesupport (= 3.1.0.rc5)
|
36
|
+
activesupport (3.1.0.rc5)
|
37
|
+
multi_json (~> 1.0)
|
38
|
+
arel (2.1.4)
|
39
|
+
bcrypt-ruby (2.1.4)
|
40
|
+
builder (3.0.0)
|
41
|
+
erubis (2.7.0)
|
42
|
+
hike (1.2.0)
|
43
|
+
i18n (0.6.0)
|
44
|
+
jquery-rails (1.0.13)
|
45
|
+
railties (~> 3.0)
|
46
|
+
thor (~> 0.14)
|
47
|
+
mail (2.3.0)
|
48
|
+
i18n (>= 0.4.0)
|
49
|
+
mime-types (~> 1.16)
|
50
|
+
treetop (~> 1.4.8)
|
51
|
+
mime-types (1.16)
|
52
|
+
multi_json (1.0.3)
|
53
|
+
polyglot (0.3.2)
|
54
|
+
rack (1.3.2)
|
55
|
+
rack-cache (1.0.2)
|
56
|
+
rack (>= 0.4)
|
57
|
+
rack-mount (0.8.2)
|
58
|
+
rack (>= 1.0.0)
|
59
|
+
rack-ssl (1.3.2)
|
60
|
+
rack
|
61
|
+
rack-test (0.6.1)
|
62
|
+
rack (>= 1.0)
|
63
|
+
rails (3.1.0.rc5)
|
64
|
+
actionmailer (= 3.1.0.rc5)
|
65
|
+
actionpack (= 3.1.0.rc5)
|
66
|
+
activerecord (= 3.1.0.rc5)
|
67
|
+
activeresource (= 3.1.0.rc5)
|
68
|
+
activesupport (= 3.1.0.rc5)
|
69
|
+
bundler (~> 1.0)
|
70
|
+
railties (= 3.1.0.rc5)
|
71
|
+
railties (3.1.0.rc5)
|
72
|
+
actionpack (= 3.1.0.rc5)
|
73
|
+
activesupport (= 3.1.0.rc5)
|
74
|
+
rack-ssl (~> 1.3.2)
|
75
|
+
rake (>= 0.8.7)
|
76
|
+
rdoc (~> 3.4)
|
77
|
+
thor (~> 0.14.6)
|
78
|
+
rake (0.9.2)
|
79
|
+
rdoc (3.9.2)
|
80
|
+
sprockets (2.0.0.beta.13)
|
81
|
+
hike (~> 1.2)
|
82
|
+
rack (~> 1.0)
|
83
|
+
tilt (!= 1.3.0, ~> 1.1)
|
84
|
+
thor (0.14.6)
|
85
|
+
tilt (1.3.2)
|
86
|
+
treetop (1.4.10)
|
87
|
+
polyglot
|
88
|
+
polyglot (>= 0.3.1)
|
89
|
+
tzinfo (0.3.29)
|
90
|
+
|
91
|
+
PLATFORMS
|
92
|
+
ruby
|
93
|
+
|
94
|
+
DEPENDENCIES
|
95
|
+
jquery-rails
|
96
|
+
mediaelement_rails!
|
97
|
+
rails (>= 3.1.rc.5)
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2011 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
## MediaelementRails ##
|
2
|
+
This neat project brings the cool MediaElement.js html5/flash/silverlight video-player to the rails world.
|
3
|
+
It requires rails 3.1 engines (tested with 3.1 rc5) and makes integration pretty easy.
|
4
|
+
|
5
|
+
## All you have to do is: ##
|
6
|
+
Add the gem to the list of required gems in your Gemfile
|
7
|
+
|
8
|
+
### Javascript ###
|
9
|
+
Load the Mediaelement Javascript in your application.js:
|
10
|
+
|
11
|
+
//= require 'mediaelement_rails'
|
12
|
+
|
13
|
+
### And CSS ###
|
14
|
+
Load the Mediaelement css in your application.css:
|
15
|
+
|
16
|
+
//= require 'mediaelement_rails'
|
17
|
+
|
18
|
+
|
19
|
+
## Wanna use MediaElement (not the player) only? ##
|
20
|
+
This is easy as hell too!
|
21
|
+
Don't include any css and include the following Javascript in your application.js to get it working:
|
22
|
+
|
23
|
+
//= require 'mediaelement_rails/rails'
|
24
|
+
|
25
|
+
|
26
|
+
## Anything else I should know? ##
|
27
|
+
Nothing special! This project includes all assets you might need.
|
28
|
+
|
29
|
+
This project rocks and uses MIT-LICENSE.
|
data/Rakefile
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
begin
|
3
|
+
require 'bundler/setup'
|
4
|
+
rescue LoadError
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'rdoc/task'
|
9
|
+
rescue LoadError
|
10
|
+
require 'rdoc/rdoc'
|
11
|
+
require 'rake/rdoctask'
|
12
|
+
RDoc::Task = Rake::RDocTask
|
13
|
+
end
|
14
|
+
|
15
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
+
rdoc.rdoc_dir = 'rdoc'
|
17
|
+
rdoc.title = 'MediaelementRails'
|
18
|
+
rdoc.options << '--line-numbers'
|
19
|
+
rdoc.rdoc_files.include('README.rdoc')
|
20
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
21
|
+
end
|
22
|
+
|
23
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
24
|
+
load 'rails/tasks/engine.rake'
|
25
|
+
|
26
|
+
|
27
|
+
Bundler::GemHelper.install_tasks
|
28
|
+
|
29
|
+
require 'rake/testtask'
|
30
|
+
|
31
|
+
Rake::TestTask.new(:test) do |t|
|
32
|
+
t.libs << 'lib'
|
33
|
+
t.libs << 'test'
|
34
|
+
t.pattern = 'test/**/*_test.rb'
|
35
|
+
t.verbose = false
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
task :default => :test
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|