polyglot-0.3.3.gemspec 957 B

12345678910111213141516171819202122232425262728
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = "polyglot"
  4. s.version = "0.3.3"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. s.authors = ["Clifford Heath"]
  7. s.date = "2011-11-01"
  8. s.description = "\nThe Polyglot library allows a Ruby module to register a loader\nfor the file type associated with a filename extension, and it\naugments 'require' to find and load matching files."
  9. s.email = ["clifford.heath@gmail.com"]
  10. s.extra_rdoc_files = ["README.txt"]
  11. s.files = ["README.txt"]
  12. s.homepage = "http://github.com/cjheath/polyglot"
  13. s.licenses = ["MIT"]
  14. s.require_paths = ["lib"]
  15. s.rubygems_version = "1.8.24"
  16. s.summary = "Augment 'require' to load non-Ruby file types"
  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