forked from tokland/yaml2csv
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathyaml2csv.gemspec
More file actions
27 lines (23 loc) · 820 Bytes
/
yaml2csv.gemspec
File metadata and controls
27 lines (23 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "yaml2csv"
s.homepage = "http://github.com/benhutton/yaml2csv"
s.authors = ["Ben Hutton"]
s.summary = "Convert YAML to CSV (and backward)"
s.description = "yaml2csv converts between YAML and CSV files"
s.email = "benhutton@gmail.com"
s.require_path = "lib"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.version = '0.0.3'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.8.6'
s.required_rubygems_version = '>= 1.3.5'
{
'bundler' => '~> 1.0.7',
'rake' => '~> 0.8.7',
}.each do |lib, version|
s.add_development_dependency lib, version
end
s.add_runtime_dependency 'ya2yaml', '~> 0.30'
end