Sha256: 637cc42e3e477a59280d9d85a9e302e1411b0fe2c6a3e6eb1ef80072e94294f4

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'data-table/version'

Gem::Specification.new do |s|
  s.name        = 'data-table'
  s.version     = DataTable::VERSION
  s.licenses    = ['MIT']
  s.authors     = ['Steve Erickson', 'Jeff Fraser']
  s.email       = ['sixfeetover@gmail.com']
  s.homepage    = 'https://github.com/veracross/data-table'
  s.summary     = %(Turn arrays of hashes or models in to an HTML table.)
  s.description = %(data-table is a simple gem that provides a DSL for
                    turning an array of hashes or ActiveRecord objects into an
                    HTML table.)

  s.add_development_dependency 'rake', '~> 12'
  s.add_development_dependency 'rspec', '~> 3'
  s.add_development_dependency 'guard', '~> 2'
  s.add_development_dependency 'guard-rspec', '~> 4'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  s.require_paths = ['lib']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
data-table-2.0.3 data-table.gemspec