mustache-js-rails 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 395673337daaed970f219b3d086caeaa53ebecc8e2f4c65d32a96954601517d4
4
- data.tar.gz: 984772069e481c77cb285343756243af471848173ac69f5b23ec225151699ea4
3
+ metadata.gz: 36988ece1ab2bab67c6733b93c8edc93183271b779b5f45da4b591f30d43d97f
4
+ data.tar.gz: 9bec1d5debb8da66ddac805640929e8cfc917b0653a838c8381a8c8f103a0ca0
5
5
  SHA512:
6
- metadata.gz: 9d2800c3786b8a6dca1be59ad35b43321bde450c795fc579d329c0a0815724bb9695c04c7526036c754bfe9503941aede5c0d9b2ce95a915338c9b77df354122
7
- data.tar.gz: 57b04c5a074d5f9d99e03e182937ae0a94f4dcd991b89a5d0710cfb9bc641c65dae69acc53dede40425738168b08291022389c319b3a4587ffe16544668dd4cf
6
+ metadata.gz: 5c35d0872149f49b7ced82ae23982ff79cb96ca47cf90b8fa05ff8082a151f802760eec94f728310379ccac5de1a574a0953e9f03a81a68be3631141b480eab7
7
+ data.tar.gz: c3f41d40d080d1c71bf86923e16b660872cfaaad48e1f744f5ca11fe331c9a13fb383019128fba27117a8eaa42eb36776cc0ff4c14938a55b450e8a5d128d414
data/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # mustache-js-rails
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/mustache-js-rails.svg)][gem_version]
4
+
5
+ [gem_version]: https://rubygems.org/gems/mustache-js-rails
6
+
3
7
  mustache-js-rails integrates [mustache.js](https://github.com/janl/mustache.js)
4
8
  and [mustache jQuery integration](https://github.com/jonnyreeves/jquery-Mustache) with rails 3.1+ asset pipeline.
5
9
 
6
10
  Integrated versions are:
7
11
 
8
- * mustache.js - <b id="mustache-js-version">4.0.0</b>
12
+ * mustache.js - <b id="mustache-js-version">4.0.1</b>
9
13
  * jQuery mustache - <b id="jquery-mustache-js-version">0.2.8</b>
10
14
 
11
15
  ### Installation
@@ -1,3 +1,3 @@
1
1
  module MustacheJsRails
2
- VERSION = "4.0.0"
2
+ VERSION = "4.0.1"
3
3
  end
@@ -644,7 +644,7 @@
644
644
  if (tagIndex == 0 && indentation) {
645
645
  indentedValue = this.indentPartial(value, indentation, lineHasNonSpace);
646
646
  }
647
- return this.renderTokens(this.parse(indentedValue, tags), context, partials, indentedValue);
647
+ return this.renderTokens(this.parse(indentedValue, tags), context, partials, indentedValue, tags);
648
648
  }
649
649
  };
650
650
 
@@ -666,7 +666,7 @@
666
666
 
667
667
  var mustache = {
668
668
  name: 'mustache.js',
669
- version: '4.0.0',
669
+ version: '4.0.1',
670
670
  tags: [ '{{', '}}' ],
671
671
  clearCache: undefined,
672
672
  escape: undefined,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mustache-js-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-29 00:00:00.000000000 Z
11
+ date: 2020-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '10.5'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '10.5'
40
+ version: '0'
41
41
  description:
42
42
  email:
43
43
  - knapo@knapo.net