From 29fe8569162b1b9ee5a39869ecb5e64447b805bd Mon Sep 17 00:00:00 2001 From: Holger Just Date: Sat, 19 Nov 2011 21:09:42 +0100 Subject: [PATCH] [#604] Add base tag --- lib/chili_project/liquid/tags.rb | 2 +- lib/chili_project/liquid/tags/tag.rb | 4 ++++ lib/chili_project/liquid/variables.rb | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 lib/chili_project/liquid/tags/tag.rb diff --git a/lib/chili_project/liquid/tags.rb b/lib/chili_project/liquid/tags.rb index af58c33d..9aa8b7f8 100644 --- a/lib/chili_project/liquid/tags.rb +++ b/lib/chili_project/liquid/tags.rb @@ -29,4 +29,4 @@ module ChiliProject::Liquid # include # macro_list end -end +end \ No newline at end of file diff --git a/lib/chili_project/liquid/tags/tag.rb b/lib/chili_project/liquid/tags/tag.rb new file mode 100644 index 00000000..4b7783dd --- /dev/null +++ b/lib/chili_project/liquid/tags/tag.rb @@ -0,0 +1,4 @@ +module ChiliProject::Liquid::Tags + class Tag < ::Liquid::Tag + end +end diff --git a/lib/chili_project/liquid/variables.rb b/lib/chili_project/liquid/variables.rb index ad23da38..28766ec6 100644 --- a/lib/chili_project/liquid/variables.rb +++ b/lib/chili_project/liquid/variables.rb @@ -6,7 +6,6 @@ module ChiliProject # Variables are used in liquid like {{var}} def self.macro_backwards_compatibility { - 'macro_list' => "Use the '{% variable_list %}' tag to see all Liquid variables and '{% tag_list %}' to see all of the Liquid tags." } end end