-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtable_for_collection.gemspec
29 lines (25 loc) · 1.11 KB
/
table_for_collection.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
26
27
28
29
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'date'
require 'table_for/version'
spec = Gem::Specification.new do |s|
s.authors = ["Dima Lunich", "Andrey Savchenko", "Dmitry Shaposhnik"]
s.licenses = ['MIT']
s.date = Date.today.to_s
s.homepage = "http://github.com/lunich/table_for"
s.rubyforge_project = ""
s.name = TableHelper::GEM_NAME
s.version = TableHelper::VERSION
s.summary = "#{TableHelper::GEM_NAME}-#{TableHelper::VERSION}"
s.description = "This gem builds HTML-table using given array"
s.files = Dir.glob("{lib,spec}/**/*") +
["README.rdoc", "Rakefile", "Changelog", "Gemfile", "init.rb"]
s.test_files = Dir.glob("spec/**/*")
s.require_path = "lib"
s.extra_rdoc_files = ["README.rdoc"]
s.rdoc_options = ["--main", "README.rdoc"]
s.add_development_dependency "rspec", ">= 2.0.0"
s.add_dependency "actionpack"
end