# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) require 'smart_csv/version' Gem::Specification.new do |gem| gem.name = 'smart_csv' gem.version = SmartCSV::VERSION gem.platform = Gem::Platform::RUBY gem.date = '2013-10-19' gem.authors = ['MichaƂ Szyma'] gem.email = ['raglub.ruby@gmail.com'] gem.homepage = "https://github.com/raglub/smart_csv" gem.summary = %q{Extend CSV class.} gem.description = %q{Extend CSV class. CSV can delete or select some records.} gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ['lib'] gem.add_development_dependency 'rspec', ">= 2.0.0" end