-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata-table.gemspec
25 lines (22 loc) · 1.03 KB
/
data-table.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$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 = ['[email protected]']
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