File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
### Unreleased
2
2
3
+ ### Curly 0.11.0 (July 31, 2013)
4
+
3
5
* Make Curly raise an exception when a reference or comment is not closed.
4
6
5
7
* Daniel Schierbeck*
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ Gem::Specification.new do |s|
4
4
s . rubygems_version = '1.3.5'
5
5
6
6
s . name = 'curly-templates'
7
- s . version = '0.10.2 '
8
- s . date = '2013-07-11 '
7
+ s . version = '0.11.0 '
8
+ s . date = '2013-07-31 '
9
9
10
10
s . summary = "Free your views!"
11
11
s . description = "A view layer for your Rails apps that separates structure and logic."
@@ -42,6 +42,7 @@ Gem::Specification.new do |s|
42
42
lib/curly/presenter.rb
43
43
lib/curly/railtie.rb
44
44
lib/curly/scanner.rb
45
+ lib/curly/syntax_error.rb
45
46
lib/curly/template_handler.rb
46
47
lib/generators/curly/controller/controller_generator.rb
47
48
lib/generators/curly/controller/templates/presenter.rb.erb
@@ -52,6 +53,7 @@ Gem::Specification.new do |s|
52
53
spec/presenter_spec.rb
53
54
spec/scanner_spec.rb
54
55
spec/spec_helper.rb
56
+ spec/syntax_error_spec.rb
55
57
spec/template_handler_spec.rb
56
58
]
57
59
# = MANIFEST =
Original file line number Diff line number Diff line change 26
26
# See Curly::Presenter for more information on presenters.
27
27
#
28
28
module Curly
29
- VERSION = "0.10.2 "
29
+ VERSION = "0.11.0 "
30
30
31
31
# Compiles a Curly template to Ruby code.
32
32
#
You can’t perform that action at this time.
0 commit comments