Sha256: 7f2fb8848be78de331f119897110bda8f0190bffb06662313029eafd07ab1766
Contents?: true
Size: 1.5 KB
Versions: 3
Compression:
Stored size: 1.5 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/csv_pirate/version', __FILE__) Gem::Specification.new do |s| s.name = %q{csv_pirate} s.version = CsvPirate::VERSION s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Peter Boling"] s.description = %q{CsvPirate is the easy way to create a CSV of essentially anything in Ruby, in full pirate regalia. It works better if you are wearing a tricorne!} s.email = %q{peter.boling@gmail.com} s.extra_rdoc_files = [ "LICENSE", "README.rdoc" ] s.files = `git ls-files`.split($\) s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.homepage = %q{http://github.com/pboling/csv_pirate} s.licenses = ["MIT"] s.require_paths = ["lib"] s.rubygems_version = %q{1.3.7} s.summary = %q{Easily create CSVs of any data that can be derived from instance methods on your classes.} #FasterCSV became the built-in CSV library in Ruby 1.9, so is only required if using Ruby 1.8 if RUBY_VERSION =~ /^1\.8\.\d*/ s.add_runtime_dependency(%q<fastercsv>, [">= 1.4.0"]) end s.add_development_dependency(%q<rspec>, [">= 2.11.0"]) s.add_development_dependency(%q<shoulda>, [">= 0"]) s.add_development_dependency(%q<rdoc>, [">= 3.12"]) s.add_development_dependency(%q<reek>, [">= 1.2.8"]) s.add_development_dependency(%q<roodi>, [">= 2.1.0"]) s.add_development_dependency(%q<rake>, [">= 0"]) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
csv_pirate-5.0.7 | csv_pirate.gemspec |
csv_pirate-5.0.6 | csv_pirate.gemspec |
csv_pirate-5.0.6.pre1 | csv_pirate.gemspec |