tilt 1.2 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/lib/tilt.rb +1 -4
  2. data/tilt.gemspec +1 -1
  3. metadata +3 -2
@@ -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
@@ -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
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tilt
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- version: "1.2"
9
+ - 1
10
+ version: 1.2.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Ryan Tomayko