Sha256: 3d94df9d2d3913e2feb8d818f5dc9b98fb14cfdf92241eecb122baeb7066dba5
Contents?: true
Size: 1.35 KB
Versions: 22
Compression:
Stored size: 1.35 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "tabulatr/version" Gem::Specification.new do |s| s.name = "tabulatr2" s.version = Tabulatr::VERSION.dup s.platform = Gem::Platform::RUBY s.summary = "A tight DSL to build tables of ActiveRecord "+ "models with sorting, pagination, finding/filtering, "+ "selecting and batch actions." s.email = "open-source@metaminded.com" s.homepage = "http://github.com/metaminded/tabulatr2" s.description = "A tight DSL to build tables of ActiveRecord "+ "models with sorting, pagination, finding/filtering, "+ "selecting and batch actions. " + "Tries to do for tables what formtastic and simple_form did "+ "for forms." s.authors = ['Peter Horn', 'Florian Thomas', 'René Sprotte'] s.license = 'MIT' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.rdoc_options = ['--charset=UTF-8'] s.add_runtime_dependency('rails', '> 4.0') s.add_dependency('slim', '>= 2.0') s.add_dependency('tilt', '> 1.4') s.add_dependency('font-awesome-rails', '>= 4.0') s.add_development_dependency('rspec-rails', '>= 3.1.0') s.add_development_dependency('capybara', '>= 2.4.1') end
Version data entries
22 entries across 22 versions & 1 rubygems