-
Notifications
You must be signed in to change notification settings - Fork 4
/
partial-date.gemspec
23 lines (19 loc) · 1.09 KB
/
partial-date.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/partial-date/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "partial-date"
gem.version = PartialDate::VERSION
gem.summary = %q{A simple date class that can be used to store partial date values in a single column/attribute.}
gem.description = %q{A simple date class that can be used to store partial date values in a single column/attribute. An example use case would include an archive, or catalogue entry where the complete date is unknown.}
gem.license = "MIT"
gem.authors = ["Anthony Bouch"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/58bits/partial-date#readme"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rubygems-tasks", "~> 0.2"
gem.add_development_dependency "rspec", "~> 2.4"
gem.add_development_dependency "yard", "~> 0.7"
end