mustache-js-rails 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of mustache-js-rails might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c3e1cd0d6a67d92f643fb3a05119d4b845a068d7
4
- data.tar.gz: 1abff9d3ae9199596c18766fda243306a02be4dd
3
+ metadata.gz: b3f2484ee509a89738ccdbc1f9bd4ec1a90c7b79
4
+ data.tar.gz: ec61ed46f7aceccfabed550792bdbede1d88f001
5
5
  SHA512:
6
- metadata.gz: 876b003a7f7c62adaa32b7738db56670ea80d6cbf1d708e830a35ff5626be06a60bb344da87a877e11ec2dea479e8e4d890e39769274b24d8a3165d11a62e170
7
- data.tar.gz: 6f2a30e9e8ad3eab5a5d18f85341c91db4ec2b4ad1a9678e31936b86a25245cb0e06bedd5059448aca9093536e846e74a1db2df8acff44a93104857e57a1005d
6
+ metadata.gz: af3e6044a71e85773344fefcd6afb690c6eae8009d4284e57992880452523b51513036b0b500372df5df0a58ee91b2127fedde0c3e2f9d754cf69fcbd34dfa9d
7
+ data.tar.gz: 9e008c766476ffacec04de627213e5d6d3bd5dfc68c02809e36b5dde5379efe3027be79430d6c3eed49d043140fe9328d356a921c73ba824888f4f5dc1ac3bf2
data/README.md CHANGED
@@ -1,4 +1,33 @@
1
- mustache-js-rails
2
- =================
1
+ # mustache-js-rails
3
2
 
4
- Colorbox for the Rails 3.1+ asset pipeline
3
+ mustache-js-rails integrates [mustache.js](https://github.com/janl/mustache.js)
4
+ and [mustache jQuery integration](https://github.com/jonnyreeves/jquery-Mustache) with rails 3.1+ asset pipeline.
5
+
6
+ Current binded versions are:
7
+
8
+ * jQuery mustache - v0.2.7
9
+ * mustache.js - 0.7.2
10
+
11
+ ### Installation
12
+
13
+ Add
14
+
15
+ ``` ruby
16
+ gem 'mustache-js-rails'`
17
+ ```
18
+
19
+ to your `Gemfile`
20
+
21
+ and
22
+
23
+ ```javascript
24
+ //= require mustache
25
+ ```
26
+
27
+ to your `app/assets/javascripts/application.js` or other js manifest file.
28
+
29
+ For jQuery integration also add:
30
+
31
+ ```javascript
32
+ //= require jquery.mustache
33
+ ```
@@ -1,3 +1,3 @@
1
1
  module MustacheJsRails
2
- VERSION = "0.0.2"
3
- end
2
+ VERSION = "0.0.3"
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mustache-js-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik