-
Notifications
You must be signed in to change notification settings - Fork 36
/
effective_datatables.gemspec
24 lines (20 loc) · 1.1 KB
/
effective_datatables.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'effective_datatables/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'effective_datatables'
s.version = EffectiveDatatables::VERSION
s.email = ['[email protected]']
s.authors = ['Code and Effect']
s.homepage = 'https://github.com/code-and-effect/effective_datatables'
s.summary = 'Uniquely powerful server-side searching, sorting and filtering of any ActiveRecord or Array collection as well as post-rendered content displayed as a frontend jQuery Datatable'
s.description = 'Uniquely powerful server-side searching, sorting and filtering of any ActiveRecord or Array collection as well as post-rendered content displayed as a frontend jQuery Datatable'
s.licenses = ['MIT']
s.files = Dir['{app,config,db,lib}/**/*'] + ['MIT-LICENSE', 'README.md']
s.add_dependency 'rails', '>= 3.2.0'
s.add_dependency 'coffee-rails'
s.add_dependency 'effective_bootstrap'
s.add_dependency 'effective_resources'
s.add_dependency 'sassc'
end