popcornjs-rails 0.9.2 → 1.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.
- data/README.md +12 -3
- data/README.md~ +15 -0
- data/lib/popcornjs-rails/version.rb +1 -1
- data/lib/popcornjs-rails/version.rb~ +5 -0
- data/popcornjs-rails.gemspec +1 -1
- data/vendor/assets/javascripts/popcorn-complete.js +9706 -0
- data/vendor/assets/javascripts/popcorn-complete.min.js +180 -0
- data/vendor/assets/javascripts/popcorn.js +159 -7979
- data/vendor/assets/javascripts/popcorn.min.js +42 -179
- metadata +7 -3
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Rails 3.1 asset-pipeline gem to provide
|
1
|
+
Rails 3.1 asset-pipeline gem to provide popcorn.js
|
2
2
|
|
3
3
|
# Install
|
4
4
|
|
@@ -9,8 +9,17 @@ Rails 3.1 asset-pipeline gem to provide underscore.js
|
|
9
9
|
|
10
10
|
In your application.js manifest:
|
11
11
|
|
12
|
+
For full version:
|
12
13
|
//= popcorn
|
13
|
-
|
14
|
+
|
15
|
+
Minified
|
16
|
+
//= popcorn.min
|
17
|
+
|
18
|
+
Full with all plugins
|
19
|
+
//= popcorn-complete
|
20
|
+
|
21
|
+
Full with all plugins and minified
|
22
|
+
//= popcorn-complete.min
|
23
|
+
|
14
24
|
or directly available under `/assets/popcorn.js`
|
15
25
|
|
16
|
-
Easy as pie.
|
data/README.md~
ADDED
data/popcornjs-rails.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Popcornjs::Rails::VERSION
|
8
8
|
s.authors = ["Jaimie van Santen"]
|
9
9
|
s.email = ["rhoxus@gmail.com"]
|
10
|
-
s.homepage = "https://github.com/jaimie-van-santen/
|
10
|
+
s.homepage = "https://github.com/jaimie-van-santen/popcornjs-rails"
|
11
11
|
s.summary = %q{popcorn.js asset pipeline provider/wrapper}
|
12
12
|
s.description = %q{Simple wrapper for HTML5 Video library popcorn.js}
|
13
13
|
|