public
Description: Comma is a small CSV (ie. comma separated values) generation extension for Ruby objects, that lets you seamlessly define a CSV output format via a small DSL
Homepage: http://github.com/crafterm/comma
Clone URL: git://github.com/crafterm/comma.git
comma / comma.gemspec
100644 13 lines (12 sloc) 0.448 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
Gem::Specification.new do |s|
  s.name = "comma"
  s.version = "0.2.2"
  s.author = "Marcus Crafter"
  s.email = "crafterm@redartisan.com"
  s.homepage = "http://github.com/crafterm/comma"
  s.platform = Gem::Platform::RUBY
  s.summary = "Ruby Comma Seperated Values generation library"
  s.files = %w( README.markdown MIT-LICENSE lib/comma.rb lib/comma/extractors.rb )
  s.require_path = "lib"
  s.add_dependency("activesupport", ">= 2.2.2")
end