Skip to content

Commit 9bd64e0

Browse files
committed
Release 0.10.0
1 parent 6381eb1 commit 9bd64e0

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
### Unreleased
22

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+
313
### Curly 0.9.1 (June 20, 2013)
414

515
* Better error handling. If a presenter class cannot be found, we not raise a

curly-templates.gemspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
44
s.rubygems_version = '1.3.5'
55

66
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'
99

1010
s.summary = "Free your views!"
1111
s.description = "A view layer for your Rails apps that separates structure and logic."
@@ -41,6 +41,7 @@ Gem::Specification.new do |s|
4141
lib/curly/invalid_reference.rb
4242
lib/curly/presenter.rb
4343
lib/curly/railtie.rb
44+
lib/curly/scanner.rb
4445
lib/curly/template_handler.rb
4546
lib/generators/curly/controller/controller_generator.rb
4647
lib/generators/curly/controller/templates/presenter.rb.erb
@@ -49,6 +50,7 @@ Gem::Specification.new do |s|
4950
spec/compiler_spec.rb
5051
spec/generators/controller_generator_spec.rb
5152
spec/presenter_spec.rb
53+
spec/scanner_spec.rb
5254
spec/spec_helper.rb
5355
spec/template_handler_spec.rb
5456
]

lib/curly.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# See Curly::Presenter for more information on presenters.
2727
#
2828
module Curly
29-
VERSION = "0.9.1"
29+
VERSION = "0.10.0"
3030

3131
# Compiles a Curly template to Ruby code.
3232
#

0 commit comments

Comments
 (0)