kengos/active_export

View on GitHub
active_export.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/active_export/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["kengos"]
  gem.email         = ["kengo@kengos.jp"]
  gem.description   = %q{Export to CSV/YAML/XML from ActiveRecord collections. }
  gem.summary       = %q{Export to CSV/YAML/XML from ActiveRecord collections.}
  gem.homepage      = "https://github.com/kengos/active_export"

  gem.files         = `git ls-files`.split($\)

  gem.add_dependency("activesupport", ">= 3.0.0")
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(spec)/})
  gem.name          = "active_export"
  gem.require_paths = ["lib"]
  gem.version       = ActiveExport::VERSION
end