Sha256: 99438371d0aaea7720d6972b1c4d6ed1343c65de4f38e2935cdb10983541e34b
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'honey_format/version' Gem::Specification.new do |spec| spec.name = 'honey_format' spec.version = HoneyFormat::VERSION spec.authors = ['Jacob Burenstam'] spec.email = ['burenstam@gmail.com'] spec.summary = 'Convert CSV to objects.' spec.description = 'Convert CSV to object with one command. Automagically makes your column order independent by defining real, named, methods for each column.' spec.homepage = 'https://github.com/buren/honey_format' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.10' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'benchmark-ips' spec.add_development_dependency 'rspec' spec.add_development_dependency 'simplecov' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
honey_format-0.2.1 | honey_format.gemspec |
honey_format-0.2.0 | honey_format.gemspec |