Sha256: 93972b0bc96262a98227ef0d89154ba6c204bbfefb7f975ffcfa45dab28b3864

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tabulatr/version"

Gem::Specification.new do |s|
  s.name        = "tabulatr"
  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       = "info@provideal.net"
  s.homepage    = "http://github.com/provideal/tabulatr"
  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', 'René Sprotte']

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = []
  s.require_paths = ["lib"]
  s.rdoc_options  = ['--charset=UTF-8']
  

  s.add_runtime_dependency('rails', '~> 3.0')
  s.add_dependency('whiny_hash', '>= 0.0.2')
  s.add_dependency('id_stuffer', '>= 0.0.1')

  s.rubyforge_project = "tabulatr"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tabulatr-0.1.3 tabulatr.gemspec
tabulatr-0.1.2 tabulatr.gemspec
tabulatr-0.1.1 tabulatr.gemspec
tabulatr-0.1.0 tabulatr.gemspec