forked from pillowfactory/csv-mapper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcsv-mapper.gemspec
More file actions
20 lines (16 loc) · 789 Bytes
/
csv-mapper.gemspec
File metadata and controls
20 lines (16 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "csv-mapper"
s.version = '0.5.1'
s.platform = Gem::Platform::RUBY
s.summary = "CsvMapper is a small library intended to simplify the common steps involved with importing CSV files to a usable form in Ruby"
s.email = "lpillow@gmail.com"
s.homepage = "http://csv-mapper.rubyforge.org/"
s.description = "CsvMapper is a small library intended to simplify the common steps involved with importing CSV files to a usable form in Ruby"
s.authors = ['Luke Pillow']
s.rubyforge_project = "csv-mapper"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency("fastercsv", ">= 0")
end