Skip to content

Commit

Permalink
Version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sunaku committed Apr 22, 2011
1 parent ff3cb97 commit c0c0624
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
== HISTORY

=== Version 0.3.1 (2011-04-22)

This release fixes a compatibility issue with Ruby 1.9.2-rc2.

.Bug fixes

* Compatibility fixes for Ruby 1.9.2-rc2.

.Housekeeping

* Upgrade to Inochi 6.0.2.

* Upgrade from Dfect 2 to Detest 3.1.0.

* Move SYNTAX section into separate source file.

=== Version 0.3.0 (2010-04-26)

This release adds class methods that let you (portably and more easily)
Expand Down
4 changes: 2 additions & 2 deletions ember.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

gemspec = Gem::Specification.new do |s|
s.name = %q{ember}
s.version = "0.3.0"
s.version = "0.3.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Suraj N. Kurapati"]
s.date = %q{2010-04-26}
s.date = %q{2011-04-22}
s.description = %q{Ember (EMBEdded Ruby) is an [eRuby] template processor that allows debugging, reduces markup, and improves composability of eRuby templates.}
s.executables = ["ember"]
s.files = ["bin/ember", "lib/ember", "lib/ember/helpers", "lib/ember/helpers/rails_helper.rb", "lib/ember/template.rb", "lib/ember/inochi.rb", "lib/ember.rb", "LICENSE", "man/man1/ember.1"]
Expand Down
10 changes: 5 additions & 5 deletions lib/ember/inochi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@ module Ember
##
# Official name of this project.
#
PROJECT = "Ember"
PROJECT = 'Ember'

##
# Short single-line description of this project.
#
TAGLINE = "eRuby template processor"
TAGLINE = 'eRuby template processor'

##
# Address of this project's official home page.
#
WEBSITE = "http://snk.tuxfamily.org/lib/ember/"
WEBSITE = 'http://snk.tuxfamily.org/lib/ember/'

##
# Number of this release of this project.
#
VERSION = "0.3.0"
VERSION = '0.3.1'

##
# Date of this release of this project.
#
RELDATE = "2010-04-26"
RELDATE = '2011-04-22'

##
# Description of this release of this project.
Expand Down

0 comments on commit c0c0624

Please sign in to comment.