... 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
... 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
0 +(in /Users/tobi/Code/Ruby/liquid-markup) 0 Gem::Specification.new do |s| 0 - s.description = s.summary = "A secure non evaling end user template engine with aesthetic markup." 0 - s.email = "tobi@leetsoft.com" 0 - s.homepage = "http://www.liquidmarkup.org" 0 + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= 0 + s.authors = ["Tobias Luetke"] 0 + s.date = %q{2008-06-23} 0 + s.description = %q{A secure non evaling end user template engine with aesthetic markup.} 0 + s.email = %q{tobi@leetsoft.com} 0 + s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"] 0 + s.files = ["CHANGELOG", "History.txt", "MIT-LICENSE", "Manifest.txt", "README.txt", "Rakefile", "example/server/example_servlet.rb", "example/server/liquid_servlet.rb", "example/server/server.rb", "example/server/templates/index.liquid", "example/server/templates/products.liquid", "init.rb", "lib/extras/liquid_view.rb", "lib/liquid.rb", "lib/liquid/block.rb", "lib/liquid/condition.rb", "lib/liquid/context.rb", "lib/liquid/document.rb", "lib/liquid/drop.rb", "lib/liquid/errors.rb", "lib/liquid/extensions.rb", "lib/liquid/file_system.rb", "lib/liquid/htmltags.rb", "lib/liquid/module_ex.rb", "lib/liquid/standardfilters.rb", "lib/liquid/strainer.rb", "lib/liquid/tag.rb", "lib/liquid/tags/assign.rb", "lib/liquid/tags/capture.rb", "lib/liquid/tags/case.rb", "lib/liquid/tags/comment.rb", "lib/liquid/tags/cycle.rb", "lib/liquid/tags/for.rb", "lib/liquid/tags/if.rb", "lib/liquid/tags/ifchanged.rb", "lib/liquid/tags/include.rb", "lib/liquid/tags/unless.rb", "lib/liquid/template.rb", "lib/liquid/variable.rb", "test/block_test.rb", "test/condition_test.rb", "test/context_test.rb", "test/drop_test.rb", "test/error_handling_test.rb", "test/extra/breakpoint.rb", "test/extra/caller.rb", "test/file_system_test.rb", "test/filter_test.rb", "test/helper.rb", "test/html_tag_test.rb", "test/if_else_test.rb", "test/include_tag_test.rb", "test/module_ex_test.rb", "test/output_test.rb", "test/parsing_quirks_test.rb", "test/regexp_test.rb", "test/security_test.rb", "test/standard_filter_test.rb", "test/standard_tag_test.rb", "test/statements_test.rb", "test/strainer_test.rb", "test/template_test.rb", "test/test_helper.rb", "test/unless_else_test.rb", "test/variable_test.rb"] 0 - s.authors = ["Tobias Lütke"] 0 - s.files = Dir['lib/**/*'] 0 + s.homepage = %q{http://www.liquidmarkup.org} 0 s.rdoc_options = ["--main", "README.txt"] 0 - s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"] 0 \ No newline at end of file 0 + s.require_paths = ["lib"] 0 + s.rubyforge_project = %q{liquid} 0 + s.rubygems_version = %q{1.2.0} 0 + s.summary = %q{A secure non evaling end user template engine with aesthetic markup.} 0 + s.test_files = ["test/test_helper.rb"] 0 + if s.respond_to? :specification_version then 0 + current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION 0 + s.specification_version = 2 0 + if current_version >= 3 then 0 + s.add_runtime_dependency(%q<hoe>, [">= 1.6.0"]) 0 + s.add_dependency(%q<hoe>, [">= 1.6.0"]) 0 + s.add_dependency(%q<hoe>, [">= 1.6.0"])
|