forked from lukelex/csvash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csvash.gemspec
18 lines (16 loc) · 1.01 KB
/
csvash.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/csvash/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "csvash"
gem.authors = ["Lukas Alexandre", "Uriel Juliatti"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Csvash automates your CSV extraction by mapping its headers with the columns contents and turning them into hashes that can be easily converted into ruby models.}
gem.summary = %q{Csvash automates your CSV extraction by mapping its headers with the columns contents and turning them into hashes that can be easily converted into ruby models.}
gem.homepage = "https://github.com/lukasalexandre/csvash"
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.version = Csvash::VERSION
gem.add_development_dependency 'rake'
end