Sha256: 6f4ee83c9712a8ced0a62f9f4b4c7d9f43b75d732c8a67140eb8a28279a0256e
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
Gem::Specification.new do |s| s.name = 'wice_grid' s.version = '3.3.1' s.homepage = 'https://github.com/leikind/wice_grid' s.date = '2013-08-04' s.summary = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.' s.description = '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]) else s.add_dependency(kaminari, [kaminary_version]) end else s.add_dependency(kaminari, [kaminary_version]) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wice_grid-3.3.1 | wice_grid.gemspec |