tilt 1.2 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/tilt.rb +1 -4
- data/tilt.gemspec +1 -1
- metadata +3 -2
data/lib/tilt.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Tilt
|
2
2
|
TOPOBJECT = defined?(BasicObject) ? BasicObject : Object
|
3
|
-
VERSION = '1.2'
|
3
|
+
VERSION = '1.2.1'
|
4
4
|
|
5
5
|
@template_mappings = {}
|
6
6
|
|
@@ -43,9 +43,6 @@ module Tilt
|
|
43
43
|
|
44
44
|
# Deprecated module.
|
45
45
|
module CompileSite
|
46
|
-
def self.append_features(*)
|
47
|
-
warn "WARNING: Tilt::CompileSite is deprecated and will be removed in Tilt 2.0 (#{caller.first})."
|
48
|
-
end
|
49
46
|
end
|
50
47
|
|
51
48
|
# Base class for template implementations. Subclasses must implement
|
data/tilt.gemspec
CHANGED
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
|
|
3
3
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
4
4
|
|
5
5
|
s.name = 'tilt'
|
6
|
-
s.version = '1.2'
|
6
|
+
s.version = '1.2.1'
|
7
7
|
s.date = '2010-12-24'
|
8
8
|
|
9
9
|
s.description = "Generic interface to multiple Ruby template engines"
|
metadata
CHANGED