erubis-2.7.0.gemspec 1.4 KB

12345678910111213141516171819202122232425262728
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = "erubis"
  4. s.version = "2.7.0"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. s.authors = ["makoto kuwata"]
  7. s.date = "2011-04-01"
  8. s.description = " Erubis is an implementation of eRuby and has the following features:\n\n * Very fast, almost three times faster than ERB and about 10% faster than eruby.\n * Multi-language support (Ruby/PHP/C/Java/Scheme/Perl/Javascript)\n * Auto escaping support\n * Auto trimming spaces around '<% %>'\n * Embedded pattern changeable (default '<% %>')\n * Enable to handle Processing Instructions (PI) as embedded pattern (ex. '<?rb ... ?>')\n * Context object available and easy to combine eRuby template with YAML datafile\n * Print statement available\n * Easy to extend and customize in subclass\n * Ruby on Rails support\n"
  9. s.email = "kwa(at)kuwata-lab.com"
  10. s.executables = ["erubis"]
  11. s.files = ["bin/erubis"]
  12. s.homepage = "http://www.kuwata-lab.com/erubis/"
  13. s.require_paths = ["lib"]
  14. s.rubyforge_project = "erubis"
  15. s.rubygems_version = "1.8.24"
  16. s.summary = "a fast and extensible eRuby implementation which supports multi-language"
  17. if s.respond_to? :specification_version then
  18. s.specification_version = 3
  19. if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  20. else
  21. end
  22. else
  23. end
  24. end