-
Notifications
You must be signed in to change notification settings - Fork 3
/
cutoff.gemspec
32 lines (25 loc) · 999 Bytes
/
cutoff.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
30
31
32
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cutoff/version'
Gem::Specification.new do |spec|
spec.name = 'cutoff'
spec.version = Cutoff.version
spec.authors = ['Justin Howard']
spec.email = ['[email protected]']
spec.licenses = ['MIT']
spec.summary = 'Deadlines for ruby'
spec.homepage = 'https://github.com/justinhoward/cutoff'
rubydoc = 'https://www.rubydoc.info/gems'
spec.metadata = {
'changelog_uri' => "#{spec.homepage}/blob/master/CHANGELOG.md",
'documentation_uri' => "#{rubydoc}/#{spec.name}/#{spec.version}",
'rubygems_mfa_required' => 'true'
}
spec.files = Dir['lib/**/*.rb', '*.md', '*.txt', '.yardopts']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_development_dependency 'rspec', '~> 3.10'
spec.add_development_dependency 'rspec-rails', '~> 5.0'
spec.add_development_dependency 'timecop', '>= 0.9', '< 1.0'
end