Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dasch committed Jun 4, 2013
1 parent e538b93 commit b146667
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### Unreleased

### Curly 0.9.0 (June 4, 2013)

* Allow running setup code before rendering a Curly view. Simply add a `#setup!`
method to your presenter – it will be called by Curly just before the view is
rendered.
Expand Down
6 changes: 4 additions & 2 deletions curly-templates.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'

s.name = 'curly-templates'
s.version = '0.8.0'
s.date = '2013-05-22'
s.version = '0.9.0'
s.date = '2013-06-04'

s.summary = "Free your views!"
s.description = "A view layer for your Rails apps that separates structure and logic."
Expand All @@ -28,6 +28,7 @@ Gem::Specification.new do |s|

# = MANIFEST =
s.files = %w[
CHANGELOG.md
Gemfile
README.md
Rakefile
Expand All @@ -43,6 +44,7 @@ Gem::Specification.new do |s|
lib/generators/curly/controller/controller_generator.rb
lib/generators/curly/controller/templates/presenter.rb.erb
lib/generators/curly/controller/templates/view.html.curly.erb
lib/rails/projections.json
spec/compiler_spec.rb
spec/generators/controller_generator_spec.rb
spec/presenter_spec.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/curly.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# See Curly::Presenter for more information on presenters.
#
module Curly
VERSION = "0.8.0"
VERSION = "0.9.0"

# Compiles a Curly template to Ruby code.
#
Expand Down

0 comments on commit b146667

Please sign in to comment.