-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.gemspec
21 lines (19 loc) · 1.02 KB
/
todo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
require_relative 'lib/version'
Gem::Specification.new do |spec|
spec.name = 'todo_cli_app'
spec.version = ToDo::VERSION
spec.licenses = ['MIT']
spec.summary = 'A ruby cli-only to-do app'
spec.description = 'A to-do app, the ruby cli-only edition to-do app [insert registered mark '\
'logo here].'
spec.authors = ['Juan Manuel Ramallo']
spec.email = '[email protected]'
spec.files = Dir['README.md', 'LICENSE.txt', 'lib/**/*']
spec.homepage = 'https://github.com/juanmanuelramallo/todo'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.bindir = 'exe'
spec.executables = ['todo']
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
end