-
Notifications
You must be signed in to change notification settings - Fork 210
/
activeadmin-mongoid.gemspec
28 lines (24 loc) · 1.18 KB
/
activeadmin-mongoid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_admin/mongoid/version'
Gem::Specification.new do |gem|
gem.authors = ['Elia Schito']
gem.email = ['elia@schito.me']
gem.description = %q{ActiveAdmin hacks to support Mongoid (some ActiveAdmin features are disabled)}
gem.summary = %q{ActiveAdmin hacks to support Mongoid}
gem.homepage = ''
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = 'activeadmin-mongoid'
gem.require_paths = ['lib']
gem.version = ActiveAdmin::Mongoid::VERSION
gem.license = 'MIT'
gem.add_runtime_dependency 'mongoid', ['> 3.0', '< 5.0']
gem.add_runtime_dependency 'activeadmin', '~> 0.6'
gem.add_runtime_dependency 'jquery-rails', '< 3.0' # in which they remove jquery-ui
gem.add_runtime_dependency 'sass-rails', ['>= 3.1.4', '< 5.0']
gem.add_runtime_dependency 'meta_search', '~> 1.1.3'
gem.add_development_dependency 'rspec-rails', '~> 2.7'
end