forked from leknarf/activeadmin_async_export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactiveadmin_async_export.gemspec
More file actions
21 lines (18 loc) · 961 Bytes
/
activeadmin_async_export.gemspec
File metadata and controls
21 lines (18 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/active_admin/async_export/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "activeadmin_async_export"
gem.version = ActiveAdmin::AsyncExport::VERSION
gem.authors = ["Andrew Frankel"]
gem.email = ["andrew@leknarf.net"]
gem.description = %q{ActiveAdmin plugin for email delivery of CSV exports.}
gem.summary = %q{Uses resque_mailer to asynchronously run slow data exports and deliver the results via email.}
gem.homepage = "https://github.com/leknarf/activeadmin_async_export"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_path = 'lib'
gem.required_ruby_version = '>= 1.9.2'
gem.add_runtime_dependency 'activeadmin', '>= 0.5.1'
gem.add_runtime_dependency 'sidekiq'
end