-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathedtf-humanize.gemspec
29 lines (23 loc) · 1.02 KB
/
edtf-humanize.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'edtf/humanize/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'edtf-humanize'
s.version = Edtf::Humanize::VERSION
s.authors = ['Cory Lown']
s.email = ['corylown@stanford.edu']
s.homepage = 'https://github.com/corylown/edtf-humanize'
s.summary = 'This gem adds a humanize method to EDTF dates.'
s.description = 'This gem adds a humanize method to EDTF::Decade, ' \
'EDTF::Interval, EDTF::Set, EDTF::Season, EDTF::Unknown, ' \
'and Date (ISO 8601 compliant) objects.'
s.license = 'BSD-3-Clause'
s.required_ruby_version = '>= 2.4', '< 4'
s.files = Dir['{app,config,db,lib}/**/*', 'LICENSE.txt', 'README.rdoc']
s.add_dependency 'activesupport', '>= 4'
s.add_dependency 'edtf', '>= 2.3', '< 4'
s.add_dependency 'roman', '~> 0.2.0'
s.metadata['rubygems_mfa_required'] = 'true'
end