From 3a12d8e490bde2057e1aabd84888250ace3e11b9 Mon Sep 17 00:00:00 2001 From: Ryan Tomayko Date: Fri, 10 Sep 2010 12:28:59 -0700 Subject: [PATCH] 1.1 release --- lib/tilt.rb | 2 +- tilt.gemspec | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/tilt.rb b/lib/tilt.rb index 30bac5fc..0b837710 100644 --- a/lib/tilt.rb +++ b/lib/tilt.rb @@ -1,7 +1,7 @@ require 'digest/md5' module Tilt - VERSION = '1.0.1' + VERSION = '1.1' @template_mappings = {} diff --git a/tilt.gemspec b/tilt.gemspec index 0bc82fe7..19c6f7d8 100644 --- a/tilt.gemspec +++ b/tilt.gemspec @@ -3,8 +3,8 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.name = 'tilt' - s.version = '1.0.1' - s.date = '2010-06-15' + s.version = '1.1' + s.date = '2010-09-10' s.description = "Generic interface to multiple Ruby template engines" s.summary = s.description @@ -21,14 +21,23 @@ Gem::Specification.new do |s| bin/tilt lib/tilt.rb test/contest.rb + test/markaby/locals.mab + test/markaby/markaby.mab + test/markaby/markaby_other_static.mab + test/markaby/render_twice.mab + test/markaby/scope.mab + test/markaby/yielding.mab test/tilt_buildertemplate_test.rb test/tilt_cache_test.rb + test/tilt_coffeescripttemplate_test.rb test/tilt_compilesite_test.rb test/tilt_erbtemplate_test.rb test/tilt_erubistemplate_test.rb test/tilt_hamltemplate_test.rb test/tilt_lesstemplate_test.rb test/tilt_liquidtemplate_test.rb + test/tilt_markaby_test.rb + test/tilt_nokogiritemplate_test.rb test/tilt_radiustemplate_test.rb test/tilt_rdiscounttemplate_test.rb test/tilt_rdoctemplate_test.rb