-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstandup_md.gemspec
36 lines (31 loc) · 1.34 KB
/
standup_md.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
33
34
35
36
require_relative 'lib/standup_md/version'
Gem::Specification.new do |spec|
spec.name = 'standup_md'
spec.version = StandupMD::VERSION
spec.authors = ['Evan Gray']
spec.email = 'evanthegrayt@vivaldi.net'
spec.license = 'MIT'
spec.date = Time.now.strftime('%Y-%m-%d')
spec.summary = %q{The cure for all your standup woes}
spec.description = %q{Generate and edit standups in markdown format}
spec.homepage = 'https://evanthegrayt.github.io/standup_md/'
unless spec.respond_to?(:metadata)
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] =
'https://github.com/evanthegrayt/standup_md'
spec.metadata['documentation_uri'] =
'https://evanthegrayt.github.io/standup_md/'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.1'
spec.add_development_dependency 'test-unit', '~> 3.3', '>= 3.3.5'
spec.add_development_dependency 'simplecov'
end