handlebars-source 4.0.0 → 4.0.1
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.
- checksums.yaml +4 -4
- data/handlebars.js +9 -8
- data/handlebars.runtime.js +5 -5
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d4d61b8b6a50b0366f72803609381d379a99abb
|
|
4
|
+
data.tar.gz: 362759dabbffca229ddd78bdf3b263653c2d99f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c7eaf1ad99986acb23df98c4c8df79696071352b05b2dd36a010287872ce4ccc93a53f132710b8d66014d7a451758fdab42e4b373f905009af77c80f3bae29c
|
|
7
|
+
data.tar.gz: cf10b3c12cda959ca49eccb82d924978bf60a14871f803fa38bfef0b835130a42a1ace47118c8804a5e1ab465de46cbe8ba8ad61a9765223b325119ff163f134
|
data/handlebars.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
|
|
3
|
-
handlebars v4.0.
|
|
3
|
+
handlebars v4.0.1
|
|
4
4
|
|
|
5
5
|
Copyright (C) 2011-2015 by Yehuda Katz
|
|
6
6
|
|
|
@@ -1365,7 +1365,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1365
1365
|
|
|
1366
1366
|
var len = parts.length;
|
|
1367
1367
|
for (; i < len; i++) {
|
|
1368
|
-
/*eslint-disable no-loop-func */
|
|
1368
|
+
/* eslint-disable no-loop-func */
|
|
1369
1369
|
this.replaceStack(function (current) {
|
|
1370
1370
|
var lookup = _this.nameLookup(current, parts[i], type);
|
|
1371
1371
|
// We want to ensure that zero and false are handled properly if the context (falsy flag)
|
|
@@ -1377,7 +1377,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1377
1377
|
return [' && ', lookup];
|
|
1378
1378
|
}
|
|
1379
1379
|
});
|
|
1380
|
-
/*eslint-enable no-loop-func */
|
|
1380
|
+
/* eslint-enable no-loop-func */
|
|
1381
1381
|
}
|
|
1382
1382
|
},
|
|
1383
1383
|
|
|
@@ -1585,6 +1585,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1585
1585
|
}
|
|
1586
1586
|
options.helpers = 'helpers';
|
|
1587
1587
|
options.partials = 'partials';
|
|
1588
|
+
options.decorators = 'container.decorators';
|
|
1588
1589
|
|
|
1589
1590
|
if (!isDynamic) {
|
|
1590
1591
|
params.unshift(this.nameLookup('partials', name, 'partial'));
|
|
@@ -2145,7 +2146,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2145
2146
|
/* 7 */
|
|
2146
2147
|
/***/ function(module, exports, __webpack_require__) {
|
|
2147
2148
|
|
|
2148
|
-
/* WEBPACK VAR INJECTION */(function(global) {/*global window */
|
|
2149
|
+
/* WEBPACK VAR INJECTION */(function(global) {/* global window */
|
|
2149
2150
|
'use strict';
|
|
2150
2151
|
|
|
2151
2152
|
exports.__esModule = true;
|
|
@@ -2229,7 +2230,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2229
2230
|
|
|
2230
2231
|
var _logger2 = _interopRequireDefault(_logger);
|
|
2231
2232
|
|
|
2232
|
-
var VERSION = '4.0.
|
|
2233
|
+
var VERSION = '4.0.1';
|
|
2233
2234
|
exports.VERSION = VERSION;
|
|
2234
2235
|
var COMPILER_REVISION = 7;
|
|
2235
2236
|
|
|
@@ -2421,7 +2422,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2421
2422
|
|
|
2422
2423
|
// Sourced from lodash
|
|
2423
2424
|
// https://github.com/bestiejs/lodash/blob/master/LICENSE.txt
|
|
2424
|
-
/*eslint-disable func-style */
|
|
2425
|
+
/* eslint-disable func-style */
|
|
2425
2426
|
exports.toString = toString;
|
|
2426
2427
|
var isFunction = function isFunction(value) {
|
|
2427
2428
|
return typeof value === 'function';
|
|
@@ -2435,7 +2436,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2435
2436
|
}
|
|
2436
2437
|
exports.isFunction = isFunction;
|
|
2437
2438
|
|
|
2438
|
-
/*eslint-enable func-style */
|
|
2439
|
+
/* eslint-enable func-style */
|
|
2439
2440
|
|
|
2440
2441
|
/* istanbul ignore next */
|
|
2441
2442
|
var isArray = Array.isArray || function (value) {
|
|
@@ -3997,7 +3998,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
3997
3998
|
/* 18 */
|
|
3998
3999
|
/***/ function(module, exports, __webpack_require__) {
|
|
3999
4000
|
|
|
4000
|
-
/*global define */
|
|
4001
|
+
/* global define */
|
|
4001
4002
|
'use strict';
|
|
4002
4003
|
|
|
4003
4004
|
exports.__esModule = true;
|
data/handlebars.runtime.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
|
|
3
|
-
handlebars v4.0.
|
|
3
|
+
handlebars v4.0.1
|
|
4
4
|
|
|
5
5
|
Copyright (C) 2011-2015 by Yehuda Katz
|
|
6
6
|
|
|
@@ -169,7 +169,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
169
169
|
|
|
170
170
|
var _logger2 = _interopRequireDefault(_logger);
|
|
171
171
|
|
|
172
|
-
var VERSION = '4.0.
|
|
172
|
+
var VERSION = '4.0.1';
|
|
173
173
|
exports.VERSION = VERSION;
|
|
174
174
|
var COMPILER_REVISION = 7;
|
|
175
175
|
|
|
@@ -361,7 +361,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
361
361
|
|
|
362
362
|
// Sourced from lodash
|
|
363
363
|
// https://github.com/bestiejs/lodash/blob/master/LICENSE.txt
|
|
364
|
-
/*eslint-disable func-style */
|
|
364
|
+
/* eslint-disable func-style */
|
|
365
365
|
exports.toString = toString;
|
|
366
366
|
var isFunction = function isFunction(value) {
|
|
367
367
|
return typeof value === 'function';
|
|
@@ -375,7 +375,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
375
375
|
}
|
|
376
376
|
exports.isFunction = isFunction;
|
|
377
377
|
|
|
378
|
-
/*eslint-enable func-style */
|
|
378
|
+
/* eslint-enable func-style */
|
|
379
379
|
|
|
380
380
|
/* istanbul ignore next */
|
|
381
381
|
var isArray = Array.isArray || function (value) {
|
|
@@ -738,7 +738,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
738
738
|
/* 6 */
|
|
739
739
|
/***/ function(module, exports, __webpack_require__) {
|
|
740
740
|
|
|
741
|
-
/* WEBPACK VAR INJECTION */(function(global) {/*global window */
|
|
741
|
+
/* WEBPACK VAR INJECTION */(function(global) {/* global window */
|
|
742
742
|
'use strict';
|
|
743
743
|
|
|
744
744
|
exports.__esModule = true;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: handlebars-source
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yehuda Katz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Handlebars.js source code wrapper for (pre)compilation gems.
|
|
14
14
|
email:
|
|
@@ -30,12 +30,12 @@ require_paths:
|
|
|
30
30
|
- lib
|
|
31
31
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
|
-
- -
|
|
33
|
+
- - ">="
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
35
|
version: '0'
|
|
36
36
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
requirements: []
|