-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathactiveadmin_select_many.gemspec
More file actions
22 lines (18 loc) · 929 Bytes
/
activeadmin_select_many.gemspec
File metadata and controls
22 lines (18 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'activeadmin/select_many/version'
Gem::Specification.new do |spec|
spec.name = 'activeadmin_select_many'
spec.version = ActiveAdmin::SelectMany::VERSION
spec.summary = 'SelectMany plugin for ActiveAdmin'
spec.description = 'An Active Admin plugin which improves one-to-many and many-to-many associations selection (jQuery required)'
spec.license = 'MIT'
spec.authors = ['Mattia Roccoberton']
spec.email = 'mat@blocknot.es'
spec.homepage = 'https://github.com/blocknotes/activeadmin_select_many'
spec.files = Dir['{app,config,lib}/**/*', 'LICENSE.txt', 'Rakefile', 'README.md']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activeadmin', '~> 2.0'
spec.add_runtime_dependency 'sassc', '~> 2.4'
end