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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60c16fb0db1e4616de9bd0f9e8482fa47dfa242c
4
- data.tar.gz: 9c0186d04fc88e47178490a96ca7c0b39dcf0b31
3
+ metadata.gz: 442ded1fe13b88f51a65ee69735b910269096c85
4
+ data.tar.gz: 38a7542981f2e26f7add361d0e125ad6bd41846a
5
5
  SHA512:
6
- metadata.gz: d3fc7a744cbb23b085ddb98a9bf221b581b706421516a3a2530676299d3bc6336c4b1c1f89f3aee43c189224412ed3c7858699d04ea945bd47bc15ac4ae0a24d
7
- data.tar.gz: c75e9eaf9ec8837a16fbca97a9653119c39f27a3ab64cf33f8c335dd2970a4040b521e4a8d68d4a5fbfb8c1a229a7f514a28d95d6eb09da133635667da0c21a7
6
+ metadata.gz: 2dc5c107eebed1f49544e2da741b540cc80bd1d595c119c6855bf41b21ba51aea90de86203bc42360700ec6f315c885a1344349c1a99e63b4d8aa84543b53e56
7
+ data.tar.gz: a292a3a5862699fb3cb502dca17afc8f838f7e24e6de22be2d42b7c548605c94b0220ec1d1af801f87346da43769c9bfb5cd951d19824dca9a061c48c3bc9f8b
@@ -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 version of Handlebars.
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 (Ruby-JavaScript bridge).
9
- Thanks to [Yehuda Katz](https://github.com/wycats) and [Charles Lowell](https://github.com/cowboyd)
10
- for their continued work on Handlebars and Handlebars.rb, respectively.
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
- with an absolute path, you must now quote the path. For example:
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.html.hbs" }}
33
+ {{> "/the/path/to/partial" }}
16
34
 
17
35
  This is due to changes in the Handlebars parser.
18
36
 
@@ -1,5 +1,5 @@
1
1
  module Tilt
2
2
  module Handlebars
3
- VERSION = "1.2.0"
3
+ VERSION = "1.3.0"
4
4
  end
5
5
  end
@@ -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.5"
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.2.0
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: 2013-09-30 00:00:00.000000000 Z
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.5'
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.5'
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.1.5
173
+ rubygems_version: 2.0.14
174
174
  signing_key:
175
175
  specification_version: 4
176
176
  summary: Use Handlebars.rb with Tilt