1234567891011121314151617181920212223242526272829 |
- # -*- encoding: utf-8 -*-
- Gem::Specification.new do |s|
- s.name = "fastercsv"
- s.version = "1.5.5"
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["James Edward Gray II"]
- s.date = "2012-05-15"
- 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"
- s.email = "james@grayproductions.net"
- s.extra_rdoc_files = ["AUTHORS", "COPYING", "README", "INSTALL", "TODO", "CHANGELOG", "LICENSE"]
- s.files = ["AUTHORS", "COPYING", "README", "INSTALL", "TODO", "CHANGELOG", "LICENSE"]
- s.homepage = "http://fastercsv.rubyforge.org"
- s.rdoc_options = ["--title", "FasterCSV Documentation", "--main", "README"]
- s.require_paths = ["lib"]
- s.rubyforge_project = "fastercsv"
- s.rubygems_version = "1.8.24"
- s.summary = "FasterCSV is CSV, but faster, smaller, and cleaner."
- if s.respond_to? :specification_version then
- s.specification_version = 3
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
- else
- end
- else
- end
- end
|