-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactiveadmin-exporter.gemspec
More file actions
21 lines (18 loc) · 949 Bytes
/
activeadmin-exporter.gemspec
File metadata and controls
21 lines (18 loc) · 949 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/exporter/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'activeadmin-exporter'
gem.version = ActiveAdmin::Exporter::VERSION
gem.authors = ['Nikita Anistratenko']
gem.email = ['steverovsky@gmail.com']
gem.description = %q(ActiveAdmin plugin for expanding export possibilities.)
gem.summary = %q{Allows to asynchronously pack export result in ZIP and send it to email.}
gem.homepage = 'https://github.com/steverovsky/activeadmin-exporter'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_runtime_dependency 'activeadmin'
gem.add_runtime_dependency 'sidekiq'
gem.add_runtime_dependency 'rubyzip'
end