mustache-js-rails 0.0.9 → 1.0.0
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 +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +1 -1
- data/lib/mustache-js-rails/version.rb +1 -1
- data/vendor/assets/javascripts/mustache.js +2 -2
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec03f20009a55fa272176d860600a1997d63179d
|
4
|
+
data.tar.gz: a2fbb16f78441d8f7d9dc98b566f188ea49fd323
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19cba5011910d02945c70831d1061b562cb8c3a4ea3f0e040fc3fd24e234a4991031a9db9b5a672bbccf74a96b900af91749185c1f0aa677a5a238995d627d81
|
7
|
+
data.tar.gz: 544bd5d540284a4a7eba1336f4d4749031bacb425bd04017318ac374996e6fb96a1d25b5ead5538b8d6881f73c03d6d3661f700ed22e6ee36a9fb57ca7dbab76
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -5,7 +5,7 @@ and [mustache jQuery integration](https://github.com/jonnyreeves/jquery-Mustache
|
|
5
5
|
|
6
6
|
Integrated versions are:
|
7
7
|
|
8
|
-
* mustache.js - <b id="mustache-js-version">0.
|
8
|
+
* mustache.js - <b id="mustache-js-version">1.0.0</b>
|
9
9
|
* jQuery mustache - <b id="jquery-mustache-js-version">0.2.8</b>
|
10
10
|
|
11
11
|
### Installation
|
@@ -368,7 +368,7 @@
|
|
368
368
|
|
369
369
|
while (value != null && index < names.length)
|
370
370
|
value = value[names[index++]];
|
371
|
-
} else {
|
371
|
+
} else if (typeof context.view == 'object') {
|
372
372
|
value = context.view[name];
|
373
373
|
}
|
374
374
|
|
@@ -525,7 +525,7 @@
|
|
525
525
|
};
|
526
526
|
|
527
527
|
mustache.name = "mustache.js";
|
528
|
-
mustache.version = "0.
|
528
|
+
mustache.version = "1.0.0";
|
529
529
|
mustache.tags = [ "{{", "}}" ];
|
530
530
|
|
531
531
|
// All high-level mustache.* functions use this writer.
|
metadata
CHANGED
@@ -1,33 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mustache-js-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Krzysztof Knapik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '3.1'
|
20
|
-
- - <=
|
20
|
+
- - "<="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '5.0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '3.1'
|
30
|
-
- - <=
|
30
|
+
- - "<="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '5.0'
|
33
33
|
description: "\n mustache.js (https://github.com/janl/mustache.js)\n and jQuery.mustache.js
|
@@ -49,7 +49,8 @@ files:
|
|
49
49
|
- vendor/assets/javascripts/jquery.mustache.js
|
50
50
|
- vendor/assets/javascripts/mustache.js
|
51
51
|
homepage: https://github.com/knapo/mustache-js-rails
|
52
|
-
licenses:
|
52
|
+
licenses:
|
53
|
+
- MIT
|
53
54
|
metadata: {}
|
54
55
|
post_install_message:
|
55
56
|
rdoc_options: []
|
@@ -57,17 +58,17 @@ require_paths:
|
|
57
58
|
- lib
|
58
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
59
60
|
requirements:
|
60
|
-
- -
|
61
|
+
- - ">="
|
61
62
|
- !ruby/object:Gem::Version
|
62
63
|
version: '0'
|
63
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
65
|
requirements:
|
65
|
-
- -
|
66
|
+
- - ">="
|
66
67
|
- !ruby/object:Gem::Version
|
67
68
|
version: '0'
|
68
69
|
requirements: []
|
69
70
|
rubyforge_project: mustache-js-rails
|
70
|
-
rubygems_version: 2.
|
71
|
+
rubygems_version: 2.4.3
|
71
72
|
signing_key:
|
72
73
|
specification_version: 4
|
73
74
|
summary: mustache.js and jQuery.mustache.js for Rails 3.1+ asset pipeline
|