tilt-handlebars 1.3.0 → 1.3.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
  SHA1:
3
- metadata.gz: 442ded1fe13b88f51a65ee69735b910269096c85
4
- data.tar.gz: 38a7542981f2e26f7add361d0e125ad6bd41846a
3
+ metadata.gz: decde4ca9500b00b2470619fab9c5d1ce6855f4c
4
+ data.tar.gz: d96e11fe46cf6130ab1e53261adaa44a7d79670f
5
5
  SHA512:
6
- metadata.gz: 2dc5c107eebed1f49544e2da741b540cc80bd1d595c119c6855bf41b21ba51aea90de86203bc42360700ec6f315c885a1344349c1a99e63b4d8aa84543b53e56
7
- data.tar.gz: a292a3a5862699fb3cb502dca17afc8f838f7e24e6de22be2d42b7c548605c94b0220ec1d1af801f87346da43769c9bfb5cd951d19824dca9a061c48c3bc9f8b
6
+ metadata.gz: 4371b4a50b69a12a782984a099e9fd1e13149a51f4198953431345a8d584d3efe4e598a0c85d1c4eff9c750e2ee7e3af9cb37580925d85a34ae009e4edc3a4f4
7
+ data.tar.gz: 8fd0ba03a41f80d5605dbc042398db2021fed5b2a45b10f2deb20da955aefd99330f37869fb91dabf14be26d8cdfedbe146053fe3826bd50964f1d9f520b52f0
@@ -1,6 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- # - "1.9.2"
4
3
  - "1.9.3"
5
4
  - "2.0.0"
6
- - rbx-19mode
5
+ - "2.1.1"
6
+ - "rbx"
data/README.md CHANGED
@@ -99,6 +99,7 @@ relative to the enclosing template (e.g., in the `views` directory).
99
99
  1. Fork it
100
100
  2. Create your feature branch (`git checkout -b my-new-feature`)
101
101
  3. Add tests, preferrably using Minitest::Spec for consistency.
102
- 4. Commit your changes (`git commit -am 'Add some feature'`)
103
- 5. Push to the branch (`git push origin my-new-feature`)
104
- 6. Create new Pull Request
102
+ 4. Run tests with `bundle exec rake test`.
103
+ 5. Commit your changes (`git commit -am 'Add some feature'`)
104
+ 6. Push to the branch (`git push origin my-new-feature`)
105
+ 7. Create new Pull Request
@@ -1,6 +1,12 @@
1
1
  Tilt Handlebars Release Notes
2
2
  =============================
3
3
 
4
+ Version 1.3.1
5
+ -------------
6
+
7
+ * Issue #1: Fix uninitialized constant Tilt::HandlebarsTemplate::Pathname. Thank you, [defeated](https://github.com/defeated) for the patch.
8
+
9
+
4
10
  Version 1.3.0
5
11
  -------------
6
12
  2014 January 24
@@ -1,3 +1,4 @@
1
+ require 'pathname'
1
2
  require 'tilt' unless defined? Tilt
2
3
  require 'handlebars'
3
4
 
@@ -1,5 +1,5 @@
1
1
  module Tilt
2
2
  module Handlebars
3
- VERSION = "1.3.0"
3
+ VERSION = "1.3.1"
4
4
  end
5
5
  end
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.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Cushing
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-24 00:00:00.000000000 Z
11
+ date: 2014-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tilt