fastercsv-1.5.5.gemspec 1.2 KB

1234567891011121314151617181920212223242526272829
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = "fastercsv"
  4. s.version = "1.5.5"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. s.authors = ["James Edward Gray II"]
  7. s.date = "2012-05-15"
  8. s.description = "FasterCSV is intended as a complete replacement to the CSV standard library. It\nis significantly faster and smaller while still being pure Ruby code. It also\nstrives for a better interface.\n"
  9. s.email = "james@grayproductions.net"
  10. s.extra_rdoc_files = ["AUTHORS", "COPYING", "README", "INSTALL", "TODO", "CHANGELOG", "LICENSE"]
  11. s.files = ["AUTHORS", "COPYING", "README", "INSTALL", "TODO", "CHANGELOG", "LICENSE"]
  12. s.homepage = "http://fastercsv.rubyforge.org"
  13. s.rdoc_options = ["--title", "FasterCSV Documentation", "--main", "README"]
  14. s.require_paths = ["lib"]
  15. s.rubyforge_project = "fastercsv"
  16. s.rubygems_version = "1.8.24"
  17. s.summary = "FasterCSV is CSV, but faster, smaller, and cleaner."
  18. if s.respond_to? :specification_version then
  19. s.specification_version = 3
  20. if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  21. else
  22. end
  23. else
  24. end
  25. end