Sha256: 011b1e0819979550481cbfb12f38cb6f2f53bf6fa5f5b4b35106bdd113e5ba97
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
Gem::Specification.new do |s| s.name = 'wice_grid' s.version = '3.4.14' s.homepage = 'https://github.com/leikind/wice_grid' s.date = '2015-03-01' s.summary = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.' s.description = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.' + 'One of the goals of this plugin was to allow the programmer to define the contents of the cell by himself, ' + 'just like one does when rendering a collection via a simple table (and this is what differentiates WiceGrid ' + 'from various scaffolding solutions), but automate implementation of filters, ordering, paginations, CSV ' + 'export, and so on. Ruby blocks provide an elegant means for this.' s.authors = ['Yuri Leikind'] s.email = 'yuri.leikind@gmail.com' s.files = `git ls-files`.split($/) s.license = 'MIT' kaminary = 'kaminari' kaminary_version = '>= 0.13.0' if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(kaminary, [kaminary_version]) s.add_runtime_dependency('coffee-rails') else s.add_dependency(kaminari, [kaminary_version]) s.add_dependency('coffee-rails') end else s.add_dependency(kaminari, [kaminary_version]) s.add_dependency('coffee-rails') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wice_grid-3.4.14 | wice_grid.gemspec |