Skip to content

Commit 97fa910

Browse files
committed
Update gemspec
1 parent 24900dd commit 97fa910

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

todoro.gemspec

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,26 @@ require_relative "lib/todoro/version"
33
Gem::Specification.new do |spec|
44
spec.name = "todoro"
55
spec.version = Todoro::VERSION
6-
spec.authors = [ "Despo Pentara" ]
7-
spec.email = [ "despo@extractmethod.com" ]
8-
spec.homepage = "TODO"
9-
spec.summary = "TODO: Summary of Todoro."
10-
spec.description = "TODO: Description of Todoro."
6+
spec.platform = Gem::Platform::RUBY
7+
spec.authors = [ "Despo Pentara", "Evangelos Giataganas" ]
8+
spec.email = [ "despo@shift42.io", "evangelos@shift42.io" ]
9+
spec.homepage = "https://github.com/shift42/todoro"
10+
spec.description = "A lightweight Rails engine that lets any model manage task lists and tasks with a simple, flexible API."
11+
spec.summary = "Todoro is a lightweight Rails engine that makes it easy to add task lists and tasks to any model. It integrates seamlessly into any Rails app, offering a simple and flexible way to organize and track tasks."
1112
spec.license = "MIT"
1213

13-
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
14-
# to allow pushing to a single host or delete this section to allow pushing to any host.
15-
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
14+
spec.metadata = {
15+
"homepage_uri" => "https://github.com/shift42/todoro",
16+
"documentation_uri" => "https://rubydoc.info/github/shift42/todoro",
17+
"changelog_uri" => "https://github.com/shift42/todoro/blob/main/CHANGELOG.md",
18+
"source_code_uri" => "https://github.com/shift42/todoro",
19+
"bug_tracker_uri" => "https://github.com/shift42/todoro/issues",
20+
"wiki_uri" => "https://github.com/shift42/todoro/wiki"
21+
}
1622

17-
spec.metadata["homepage_uri"] = spec.homepage
18-
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
19-
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
23+
spec.files = Dir["{app,config,lib}/**/*", "CHANGELOG.md", "MIT-LICENSE", "README.md"]
24+
spec.require_paths = [ "lib" ]
25+
spec.required_ruby_version = '>= 2.7.0'
2026

2127
spec.files = Dir.chdir(File.expand_path(__dir__)) do
2228
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]

0 commit comments

Comments
 (0)