popcornjs-rails 0.9.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Rails 3.1 asset-pipeline gem to provide underscore.js
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
@@ -0,0 +1,15 @@
1
+ Rails 3.1 asset-pipeline gem to provide popcorn(.min).js
2
+
3
+ # Install
4
+
5
+ gem 'popcornjs-rails'
6
+
7
+
8
+ # Use
9
+
10
+ In your application.js manifest:
11
+
12
+ //= popcorn
13
+
14
+ or directly available under `/assets/popcorn.js`
15
+
@@ -1,5 +1,5 @@
1
1
  module Popcornjs
2
2
  module Rails
3
- VERSION = "0.9.2"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
@@ -0,0 +1,5 @@
1
+ module Popcornjs
2
+ module Rails
3
+ VERSION = "0.9.2"
4
+ end
5
+ end
@@ -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/popcorn-js"
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