File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
### Unreleased
2
2
3
+ ### Curly 0.10.0 (July 11, 2013)
4
+
5
+ * Allow comments in Curly templates using the ` {{! ... }} ` syntax:
6
+
7
+ ```
8
+ {{! This is a comment }}
9
+ ```
10
+
11
+ * Daniel Schierbeck*
12
+
3
13
### Curly 0.9.1 (June 20, 2013)
4
14
5
15
* Better error handling. If a presenter class cannot be found, we not raise a
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.9.1 '
8
- s . date = '2013-06-20 '
7
+ s . version = '0.10.0 '
8
+ s . date = '2013-07-11 '
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."
@@ -41,6 +41,7 @@ Gem::Specification.new do |s|
41
41
lib/curly/invalid_reference.rb
42
42
lib/curly/presenter.rb
43
43
lib/curly/railtie.rb
44
+ lib/curly/scanner.rb
44
45
lib/curly/template_handler.rb
45
46
lib/generators/curly/controller/controller_generator.rb
46
47
lib/generators/curly/controller/templates/presenter.rb.erb
@@ -49,6 +50,7 @@ Gem::Specification.new do |s|
49
50
spec/compiler_spec.rb
50
51
spec/generators/controller_generator_spec.rb
51
52
spec/presenter_spec.rb
53
+ spec/scanner_spec.rb
52
54
spec/spec_helper.rb
53
55
spec/template_handler_spec.rb
54
56
]
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.9.1 "
29
+ VERSION = "0.10.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