forked from leikind/wice_grid
-
Notifications
You must be signed in to change notification settings - Fork 15
/
wice_grid.gemspec
34 lines (29 loc) · 1.6 KB
/
wice_grid.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
29
30
31
32
33
34
Gem::Specification.new do |s|
s.name = 'wice_grid'
s.version = '3.6.3'
s.authors = ['Yuri Leikind and contributors']
s.email = ['[email protected]']
s.homepage = 'https://github.com/leikind/wice_grid'
s.summary = 'A Rails grid plugin to quickly create grids with sorting, pagination, and filters.'
s.description = 'A Rails grid plugin to create grids with sorting, pagination, and filters generated automatically based on column types. ' \
'The contents of the cell are up for the developer, just like one does when rendering a collection via a simple table. ' \
'WiceGrid automates implementation of filters, ordering, paginations, CSV export, and so on. ' \
'Ruby blocks provide an elegant means for this.'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.license = 'MIT'
s.require_paths = ['lib']
s.date = '2016-06-15'
s.add_dependency 'activerecord', ['> 3.2']
s.add_dependency 'kaminari', ['~> 0.16']
s.add_dependency 'coffee-rails', ['> 3.2']
s.add_development_dependency('rake', '~> 10.1')
s.add_development_dependency('rspec', '~> 3.2.0')
s.add_development_dependency('bundler', '~> 1.3')
s.add_development_dependency('simplecov', '~> 0.7')
s.add_development_dependency('coveralls', '~> 0.8.2')
s.add_development_dependency('codeclimate-test-reporter', '~> 0.4.7')
s.add_development_dependency('sqlite3', '~> 1.3')
s.add_development_dependency('yard', '~> 0.8')
s.add_development_dependency('inch', '~> 0.6.4')
s.add_development_dependency('rdoc', '~> 4.2.0')
end