tilt-handlebars 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/RELEASE_NOTES.md +26 -8
- data/lib/tilt/handlebars/version.rb +1 -1
- data/tilt-handlebars.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 442ded1fe13b88f51a65ee69735b910269096c85
|
4
|
+
data.tar.gz: 38a7542981f2e26f7add361d0e125ad6bd41846a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2dc5c107eebed1f49544e2da741b540cc80bd1d595c119c6855bf41b21ba51aea90de86203bc42360700ec6f315c885a1344349c1a99e63b4d8aa84543b53e56
|
7
|
+
data.tar.gz: a292a3a5862699fb3cb502dca17afc8f838f7e24e6de22be2d42b7c548605c94b0220ec1d1af801f87346da43769c9bfb5cd951d19824dca9a061c48c3bc9f8b
|
data/RELEASE_NOTES.md
CHANGED
@@ -1,18 +1,36 @@
|
|
1
|
+
Tilt Handlebars Release Notes
|
2
|
+
=============================
|
3
|
+
|
4
|
+
Version 1.3.0
|
5
|
+
-------------
|
6
|
+
2014 January 24
|
7
|
+
|
8
|
+
* Uses Handlebars.js 1.3.0, and handlebars.rb 0.6.0.
|
9
|
+
|
10
|
+
Note: Tilt Handlebars currently uses Tilt 1.4.x, because Sinatra is not yet
|
11
|
+
compatible with Tilt 2.0. Once Sinatra is updated for Tilt 2.0, I'll release a
|
12
|
+
new version of tilt-handlebars. Alternatively, I could break out Sinatra support
|
13
|
+
into a separate gem. If you use Tilt and Tilt Handlebars without Sinatra, and
|
14
|
+
Tilt 2.0 support is important to you, please file an issue to let me know.
|
15
|
+
|
16
|
+
|
1
17
|
Version 1.2.0
|
2
18
|
-------------
|
3
19
|
2013 September 30
|
4
20
|
|
5
|
-
This version is recommend for all users, as it brings support for the release
|
21
|
+
This version is recommend for all users, as it brings support for the release
|
22
|
+
version of Handlebars.
|
6
23
|
|
7
|
-
* Updates to handlebars.rb 0.5.0, which brings with it the 1.0.0 release
|
8
|
-
version version of the JavaScript Handlebars, and an updated Ruby Racer
|
9
|
-
Thanks to [Yehuda Katz](https://github.com/wycats)
|
10
|
-
for their continued work on
|
24
|
+
* Updates to handlebars.rb 0.5.0, which brings with it the 1.0.0 release
|
25
|
+
version version of the JavaScript Handlebars, and an updated Ruby Racer
|
26
|
+
(Ruby-JavaScript bridge). Thanks to [Yehuda Katz](https://github.com/wycats)
|
27
|
+
and [Charles Lowell](https://github.com/cowboyd) for their continued work on
|
28
|
+
Handlebars and Handlebars.rb, respectively.
|
11
29
|
|
12
|
-
* Backwards compatibility note: If you are using automatic partials loading
|
13
|
-
|
30
|
+
* Backwards compatibility note: If you are using automatic partials loading with
|
31
|
+
an absolute path, you must now quote the path. For example:
|
14
32
|
|
15
|
-
{{> "/the/path/to/partial
|
33
|
+
{{> "/the/path/to/partial" }}
|
16
34
|
|
17
35
|
This is due to changes in the Handlebars parser.
|
18
36
|
|
data/tilt-handlebars.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
22
|
spec.add_dependency "tilt", "~> 1.4"
|
23
|
-
spec.add_dependency "handlebars", "~> 0.
|
23
|
+
spec.add_dependency "handlebars", "~> 0.6"
|
24
24
|
|
25
25
|
spec.add_development_dependency "bundler", "~> 1.3"
|
26
26
|
spec.add_development_dependency "rake"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tilt-handlebars
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Cushing
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tilt
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0.
|
33
|
+
version: '0.6'
|
34
34
|
type: :runtime
|
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: '0.
|
40
|
+
version: '0.6'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
170
170
|
version: '0'
|
171
171
|
requirements: []
|
172
172
|
rubyforge_project:
|
173
|
-
rubygems_version: 2.
|
173
|
+
rubygems_version: 2.0.14
|
174
174
|
signing_key:
|
175
175
|
specification_version: 4
|
176
176
|
summary: Use Handlebars.rb with Tilt
|