-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcsv_shaper.gemspec
30 lines (24 loc) · 1.14 KB
/
csv_shaper.gemspec
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
28
29
30
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/csv_shaper/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paul Springett"]
gem.email = ["[email protected]"]
gem.summary = %q{Beautiful DSL for creating CSV output in Ruby & Rails}
gem.description = %q{
Creating CSV files in Ruby is painful! CSV Shaper makes life easier! It's
ideal for converting database backed models with attributes into CSV output.
It can be used without Rails, but works great with ActiveRecord models and even
comes with support for it's own template handling.
}
gem.licenses = ['MIT']
gem.homepage = "http://github.com/paulspringett/csv_shaper"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "csv_shaper"
gem.require_paths = ["lib"]
gem.version = CsvShaper::VERSION
gem.add_dependency 'activesupport', '>= 3.0.0'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rake'
end